film-exif/src/views/OopsView.js

13 lines
388 B
JavaScript
Raw Normal View History

2018-05-03 15:23:48 -04:00
import { Alert, Row } from '//components/Bootstrap';
2018-04-03 14:13:16 -04:00
2018-05-09 09:19:48 -04:00
export const OopsView = () => (
2018-04-04 09:32:18 -04:00
<Row className="align-items-center justify-content-center full-height">
2018-04-03 21:47:41 -04:00
<Alert className="abs-center" color="danger" style={{padding: '5em'}} tag="main">
2018-04-03 15:19:45 -04:00
<h1>Oops!</h1>
2018-04-03 21:47:41 -04:00
<hr />
<p>Looks like there was a problem. ()</p>
2018-04-03 21:47:41 -04:00
<p>(°° </p>
2018-04-03 15:19:45 -04:00
</Alert>
</Row>
2018-04-03 14:13:16 -04:00
);