blob: 73f1dc86d0eb5e27813fe10b78371da484d4734f (
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 DevicePage extends Component {
render() {
return (
<div>
<MainToobar history={this.props.history} />
</div>
);
}
}
export default withWidth()(withStyles(styles)(DevicePage));
|