Blame view
imports/client/views/invalidOrg/NotFound.js
291 Bytes
c23f29749
|
1 |
import React from 'react'; |
c23f29749
|
2 |
import { Alert } from 'react-bootstrap'; |
3540345c5
|
3 |
const NotFound = () => ( |
4c9b3dfc1
|
4 5 6 7 8 |
<div className="NotFound"> <Alert bsStyle="danger"> <p><strong>Error [404]</strong>: { window.location.pathname } does not exist.</p> </Alert> </div> |
f0c912bf1
|
9 |
); |
3540345c5
|
10 11 |
export default NotFound; |