import * as _ from 'lodash'; import * as React from 'react'; import { Footer } from 'ts/components/footer'; import { TopBar } from 'ts/components/top_bar'; import { Styles } from 'ts/types'; export interface NotFoundProps { location: Location; } interface NotFoundState {} const styles: Styles = { thin: { fontWeight: 100, }, }; export class NotFound extends React.Component { public render() { return (

404 Not Found

Hm... looks like we couldn't find what you are looking for.
); } }