1234567891011121314151617181920 |
- /**
- * React Static Boilerplate
- * https://github.com/koistya/react-static-boilerplate
- * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
- */
- import React, { Component } from 'react';
- export default class extends Component {
- render() {
- return (
- <div>
- <h1>Not Found</h1>
- <p>The page you're looking for was not found.</p>
- </div>
- );
- }
- }
|