Skip to content

Instantly share code, notes, and snippets.

@bnhansn
Created October 20, 2016 17:50
Show Gist options
  • Save bnhansn/3928876defbf74875938e95eeb9d811a to your computer and use it in GitHub Desktop.
Save bnhansn/3928876defbf74875938e95eeb9d811a to your computer and use it in GitHub Desktop.
// @flow
import React from 'react';
import { Link } from 'react-router';
const NotFound = () =>
<div style={{ margin: '2rem auto', textAlign: 'center' }}>
<p>Page not found</p>
<p><Link to="/">Go to the home page →</Link></p>
</div>;
export default NotFound;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment