12345678910111213141516171819 |
- /**
- * React Static Boilerplate
- * Copyright (c) Konstantin Tarkus | MIT License
- */
- import React from 'react';
- export default class {
- render() {
- return (
- <div>
- <h1>Not Found</h1>
- <p>The page you're looking for was not found.</p>
- </div>
- );
- }
- };
|