not-found.js 228 Bytes edit raw blame history 1 2 3 4 5 6 7 8 import React from 'react'; import { Alert } from 'react-bootstrap'; export const NotFound = () => ( <Alert bsStyle="danger"> <p><strong>Error [404]</strong>: { window.location.pathname } does not exist.</p> </Alert> );