12 lines
289 B
JavaScript
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;
|