film-exif/src/views/OopsView.js

11 lines
306 B
JavaScript
Raw Normal View History

2018-04-03 15:19:45 -04:00
import { Alert, Row } from '../components/Bootstrap';
2018-04-03 14:13:16 -04:00
export const OopsView = (props) => (
2018-04-03 15:19:45 -04:00
<Row className="align-items-center justify-content-center full-height">
<Alert className="abs-center" color="danger" tag="main">
<h1>Oops!</h1>
<p>Looks like there was a problem.</p>
</Alert>
</Row>
2018-04-03 14:13:16 -04:00
);