NotFound.js
312 Bytes
import React from 'react';
import { Alert } from 'react-bootstrap';
import 'NotFound.css'
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;