-
Mazzini Francesco (Student Com20) authoredMazzini Francesco (Student Com20) authored
HomePage.tsx 579 B
import React from "react";
import Header from "./Header";
import { CssBaseline, Grid } from "@material-ui/core";
const HomePage = () => {
return (
<Grid container direction="column">
<Grid item>
<CssBaseline />
<Header />
</Grid>
<Grid item container>
<Grid item xs={false} sm={2} />
<Grid item xs={12} sm={8} >
</Grid>
<Grid item xs={false} sm={2} />
</Grid>
</Grid>
);
};
export default HomePage;