11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
import { RegisterForm } from '@/components/auth/RegisterForm'
|
|
|
|
const RegisterPage = () => {
|
|
return (
|
|
<div>
|
|
<RegisterForm/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default RegisterPage |