UNPKG

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
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&#39;t find the page you&#39;re looking for. </p> <Button variant="raised" containerElement={<Link to="/" />} > Home </Button> </div> ); export default NotFoundPage;