blob: 86eeaaa04e60c50e93d537372897dc7235793aee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import React, { Component } from 'react';
import MainToobar from './MainToolbar';
import withStyles from '@material-ui/core/styles/withStyles';
import withWidth from '@material-ui/core/withWidth';
const styles = theme => ({});
class RouteReportPage extends Component {
render() {
return (
<div>
<MainToobar history={this.props.history} />
</div>
);
}
}
export default withWidth()(withStyles(styles)(RouteReportPage));
|