aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/index.js19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/index.js b/src/index.js
index de4cb2a..725d270 100644
--- a/src/index.js
+++ b/src/index.js
@@ -35,17 +35,18 @@ const App = () => {
}
};
- const classes = useStyles();
return (
- <ThemeProvider theme={theme}>
+ <Root>
<CssBaseline/>
- <Header setPage={setPage}/>
- <Box className={classes.root}>
- <Typography variant="h4"> This is the {page} page! </Typography>
- { getPageComponent(page)}
- </Box>
- </ThemeProvider>
- );
+ <Header setPage={setPage} />
+ <Container maxWidth="xl">
+ <Paper elevation={4} style={{backgroundColor: "bisque"}}>
+ <Typography variant="h4"> This is the {page} page! </Typography>
+ { getPageComponent(page) }
+ </Paper>
+ </Container>
+ </Root>
+);
};
const Root = styled.div`
background: cornsilk;