diff --git a/Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx b/Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx index 58eaedd..f51286b 100644 --- a/Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx +++ b/Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx @@ -1,31 +1,40 @@ import React, { Component } from 'react'; import { withStyles } from '@material-ui/styles'; import Services from './services/Services'; +import { blueGrey } from '@material-ui/core/colors'; +import { Box, Grid, IconButton, Paper, Typography } from '@material-ui/core'; const styles = theme => ({ root: { flexGrow: 1, padding: '64px', backgroundColor: theme.palette.primary.dark, + }, + paper: { + backgroundColor: blueGrey[50], + height: '60px', } }); class Dashboard extends Component { render() { - - - - + const { classes } = this.props; + return ( + + + + + + + + + + + + - - - - - - - - - + + ); } }