import { Styles } from '@0xproject/react-shared'; import * as _ from 'lodash'; import * as React from 'react'; import { Footer } from 'ts/components/footer'; import { TopBar } from 'ts/components/top_bar/top_bar'; import { Dispatcher } from 'ts/redux/dispatcher'; import { Translate } from 'ts/utils/translate'; export interface NotFoundProps { location: Location; translate: Translate; dispatcher: Dispatcher; } 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.
); } }