Skip to content
Snippets Groups Projects
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;