Blame view

imports/ui/pages/NotFound.js 291 Bytes
c23f29749   tmcdeveloper   add not found rou...
1
  import React from 'react';
c23f29749   tmcdeveloper   add not found rou...
2
  import { Alert } from 'react-bootstrap';
3540345c5   themeteorchef   handful of fixes
3
  const NotFound = () => (
4c9b3dfc1   themeteorchef   cleaning up
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   tmcdeveloper   add method tests ...
9
  );
3540345c5   themeteorchef   handful of fixes
10
11
  
  export default NotFound;