generator-thundr-gae-react
Version:
Yeoman generator for a React app that runs atop Thundr on Google App Engine
23 lines (18 loc) • 417 B
JSX
import React from 'react';
import { Button } from 'material-ui';
import { Link } from 'react-router';
const NotFoundPage = () => (
<div>
<h1 className="display-1">Not Found</h1>
<p>
Sorry, we can't find the page you're looking for.
</p>
<Button
variant="raised"
containerElement={<Link to="/" />}
>
Home
</Button>
</div>
);
export default NotFoundPage;