Updated application to include report page and also added basic component for report form.

This commit is contained in:
wildscotsmen
2018-09-21 15:11:52 -04:00
parent 008d75fe3b
commit cf9e4d384a
3 changed files with 232 additions and 4 deletions

15
src/pages/Report.js Normal file
View File

@@ -0,0 +1,15 @@
import React, { Component } from 'react';
import ReportForm from '../components/ReportForm';
import Typography from '@material-ui/core/Typography';
class Report extends Component {
render() {
return (
<Typography variant='display1' align='center' gutterBottom>
<ReportForm/>
</Typography>
);
}
}
export default Report;