More silly fun with custom html elements

This commit is contained in:
Timothy Warren 2018-04-03 22:31:15 -04:00
parent de5586d074
commit f2d286d129
1 changed files with 2 additions and 3 deletions

View File

@ -1,12 +1,11 @@
import { Alert, Row } from '../components/Bootstrap';
export const OopsView = (props) => (
<Row className="align-items-center justify-content-center full-height">
<Row className="align-items-center justify-content-center full-height" tag="bs-row">
<Alert className="abs-center" color="danger" style={{padding: '5em'}} tag="main">
<h1>Oops!</h1>
<hr />
<p>Looks like there was a problem.</p>
<p>()</p>
<p>Looks like there was a problem. ()</p>
<p>(°° </p>
</Alert>
</Row>