import * as React from 'react'; import { Footer } from 'ts/components/footer'; import { TopBar } from 'ts/components/top_bar/top_bar'; import { FullscreenMessage } from 'ts/pages/fullscreen_message'; import { Dispatcher } from 'ts/redux/dispatcher'; import { Translate } from 'ts/utils/translate'; export interface NotFoundProps { location: Location; translate: Translate; dispatcher: Dispatcher; } export const NotFound = (props: NotFoundProps) => { return (
); };