Blame view

imports/ui/pages/not-found.js 228 Bytes
c23f29749   tmcdeveloper   add not found rou...
1
  import React from 'react';
c23f29749   tmcdeveloper   add not found rou...
2
3
4
5
6
7
  import { Alert } from 'react-bootstrap';
  
  export const NotFound = () => (
    <Alert bsStyle="danger">
      <p><strong>Error [404]</strong>: { window.location.pathname } does not exist.</p>
    </Alert>
f0c912bf1   tmcdeveloper   add method tests ...
8
  );