404.js 387 B

1234567891011121314151617181920
  1. /**
  2. * React Static Boilerplate
  3. * https://github.com/koistya/react-static-boilerplate
  4. * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
  5. */
  6. import React, { Component } from 'react';
  7. export default class extends Component {
  8. render() {
  9. return (
  10. <div>
  11. <h1>Not Found</h1>
  12. <p>The page you're looking for was not found.</p>
  13. </div>
  14. );
  15. }
  16. }