404.js 289 B

12345678910111213141516171819
  1. /**
  2. * React Static Boilerplate
  3. * Copyright (c) Konstantin Tarkus | MIT License
  4. */
  5. import React from 'react';
  6. export default class {
  7. render() {
  8. return (
  9. <div>
  10. <h1>Not Found</h1>
  11. <p>The page you're looking for was not found.</p>
  12. </div>
  13. );
  14. }
  15. };