daphnis/app/signup/page.tsx
2024-06-29 01:22:22 -04:00

12 lines
233 B
TypeScript

import { SignUpForm } from "@/auth/components/signup/signup";
const SignUpPage = () => {
return (
<div className="h-screen flex items-center justify-center">
<SignUpForm />
</div>
);
};
export default SignUpPage;