source: frontend/src/routes/restourant/restorant-create.jsx@ badbc79

Last change on this file since badbc79 was badbc79, checked in by Luka Cheshlarov <luka.cheshlarov@…>, 20 months ago

Initial commit

  • Property mode set to 100644
File size: 483 bytes
Line 
1import RestorantForm from "../../components/forms/restorant-form";
2import {Container, Typography} from "@mui/material";
3
4const RestorantCreate = () => {
5 return (
6 <div>
7 <Container component="main" maxWidth="xs" className="register-container-custom">
8 <Typography variant={"h1"} className={"mt-5 mb-3"}>Create Restorant</Typography>
9 <RestorantForm/>
10 </Container>
11 </div>
12 )
13}
14
15export default RestorantCreate;
Note: See TracBrowser for help on using the repository browser.