blob: 3d78b32e73002624cf9aff07bcd5952729e71cbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import React from 'react';
import { PropTypes } from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import styles from 'ba-containers/Templates/appStyles-jss';
import Error from './../Error';
class NotFoundDedicated extends React.Component {
render() {
const { classes } = this.props;
return (
<div className={classes.appFrameOuter}>
<main className={classes.outerContent} id="mainContent">
<Error />
</main>
</div>
);
}
}
NotFoundDedicated.propTypes = {
classes: PropTypes.object.isRequired,
};
export default (withStyles(styles)(NotFoundDedicated));
|