daphnis/app/signup/page.tsx

12 lines
233 B
TypeScript
Raw Normal View History

2024-06-29 05:22:22 +00:00
import { SignUpForm } from "@/auth/components/signup/signup";
const SignUpPage = () => {
return (
<div className="h-screen flex items-center justify-center">
<SignUpForm />
</div>
);
};
export default SignUpPage;