aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/not_found.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/pages/not_found.tsx')
-rw-r--r--packages/website/ts/pages/not_found.tsx25
1 files changed, 0 insertions, 25 deletions
diff --git a/packages/website/ts/pages/not_found.tsx b/packages/website/ts/pages/not_found.tsx
deleted file mode 100644
index 6abd8fc80..000000000
--- a/packages/website/ts/pages/not_found.tsx
+++ /dev/null
@@ -1,25 +0,0 @@
-import * as React from 'react';
-import { Footer } from 'ts/components/old_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 (
- <div>
- <TopBar blockchainIsLoaded={false} location={props.location} translate={props.translate} />
- <FullscreenMessage
- headerText={'404 Not Found'}
- bodyText={"Hm... looks like we couldn't find what you are looking for."}
- />
- <Footer translate={props.translate} dispatcher={props.dispatcher} />
- </div>
- );
-};