added profile #48

This commit is contained in:
2020-05-03 20:56:52 +02:00
parent 23a0e3d8d0
commit 5806373236
4 changed files with 20 additions and 3 deletions

View File

@@ -6,6 +6,7 @@ import {
} from "react-router-dom";
import SelectResource from './selectResource';
import ResourceChart from './resourcechart/resourcechart';
import Profile from './profile/profile';
const useStyles = makeStyles(theme => ({
@@ -23,6 +24,7 @@ export default function Content() {
<div className={classes.root}>
<Route exact path="/" component={Overview} />
<Route path="/profile" component={Profile} />
<Route path="/resources" component={SelectResource} />
<Route path="/resourcechart/:id" component={ResourceChart} />
</div>