Migrated from React to NextJS
This commit is contained in:
13
client/pages/signup.tsx
Normal file
13
client/pages/signup.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
import { NextPage } from 'next';
|
||||
import LoginModal from '../components/LoginModal';
|
||||
|
||||
const SignupPage: NextPage = () => {
|
||||
return (
|
||||
<div className="bg-neutral-900 w-screen h-screen">
|
||||
<LoginModal isOpen={true} defaultPage={1} onClose={() => {}} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default SignupPage;
|
Reference in New Issue
Block a user