openfood/pages/auth/index.tsx
2021-10-15 21:53:27 +02:00

20 lines
408 B
TypeScript

import { Grid } from "@mui/material";
import { LoginFrame } from "../../features/auth/loginFrame";
import { SignUpFrame } from "../../features/auth/signUpFrame";
const AuthPage = () => {
return (
<Grid container>
<Grid item xs={12} sm={6}>
<LoginFrame />
</Grid>
<Grid item xs={12} sm={6}>
<SignUpFrame />
</Grid>
</Grid>
);
};
export default AuthPage;