feat: add signup link to login and create signup dummy page

This commit is contained in:
Rıdvan Akca
2023-03-02 16:42:50 +03:00
parent e51930d7e1
commit 4e967c5720
6 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import * as React from 'react';
import Box from '@mui/material/Box';
import Container from 'components/Container';
import SignUpForm from 'components/SignUpForm/index.ee';
export default function Login(): React.ReactElement {
return (
<Box sx={{ display: 'flex', flex: 1, alignItems: 'center' }}>
<Container maxWidth="sm">
<SignUpForm />
</Container>
</Box>
);
}