Blame view
imports/ui/pages/not-found.js
275 Bytes
c23f29749
|
1 2 3 4 5 6 7 8 |
import React from 'react'; import { browserHistory } from 'react-router'; import { Alert } from 'react-bootstrap'; export const NotFound = () => ( <Alert bsStyle="danger"> <p><strong>Error [404]</strong>: { window.location.pathname } does not exist.</p> </Alert> |
f0c912bf1
|
9 |
); |