1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import { Route, Link } from 'react-router-dom';
import { Typography, Button } from '@material-ui/core';
const styles = theme => ({
errorWrap: {
background: theme.palette.common.white,
boxShadow: theme.shadows[2],
borderRadius: '50%',
width: 500,
height: 500,
[theme.breakpoints.down('sm')]: {
width: 300,
height: 300,
},
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
flexDirection: 'column',
position: 'relative',
margin: `${theme.spacing(3)}px auto`,
},
title: {
color: theme.palette.primary.main,
textShadow: `10px 6px 50px ${theme.palette.primary.main}`,
[theme.breakpoints.down('sm')]: {
fontSize: '4rem'
},
},
deco: {
boxShadow: theme.shadows[2],
position: 'absolute',
borderRadius: 2,
},
button: {
marginTop: 50
}
});
const ErrorWrap = (props) => (
<Route
render={({ staticContext }) => {
if (staticContext) {
staticContext.status = 404; // eslint-disable-line
}
const { classes, title, desc } = props;
return (
<div className={classes.errorWrap}>
<Typography className={classes.title} variant="h1">{title}</Typography>
<Typography variant="h5">{desc}</Typography>
<Button
variant="contained"
color="primary"
className={classes.button}
component={Link}
to="/app/"
>
Go To Dashboard
</Button>
</div>
);
}}
/>
);
ErrorWrap.propTypes = {
classes: PropTypes.object.isRequired,
desc: PropTypes.string.isRequired,
title: PropTypes.string.isRequired,
};
export default withStyles(styles)(ErrorWrap);
|