todos-contra-el-fuego-web/imports/ui/pages/NotFound/NotFound.js
2017-05-25 16:31:01 -05:00

12 lines
289 B
JavaScript

import React from 'react';
import { Alert } from 'react-bootstrap';
const NotFound = () => (
<div className="NotFound">
<Alert bsStyle="danger">
<p><strong>Error [404]</strong>: {window.location.pathname} does not exist.</p>
</Alert>
</div>
);
export default NotFound;