import React from 'react'; import './App.css'; import { createStyles, WithStyles } from '@material-ui/core'; import { withStyles } from '@material-ui/styles'; import { CustomAppBar } from 'components/CustomAppBar/CustomAppBar'; import { Overview } from 'components/Overview/Overview'; export const dataApi = '/api' const styles = createStyles({ root: { flexGrow: 1, }, content: { flexGrow: 1, height: '100vh', maxWidth: 1000, marginLeft: 'auto', marginRight: 'auto', }, }) interface AppProps extends WithStyles { } class ProtoApp extends React.PureComponent { public render() { return (
); } } export const App = withStyles(styles)(ProtoApp);