diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-11-27 15:39:34 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-11-29 02:59:54 +0800 |
commit | 7a726e2740b8cbc885229ed377ef5fc89502301d (patch) | |
tree | 3cea30517547f8b3afa91e7da700483e05f76812 /packages/website/ts/pages/instant | |
parent | 53f8e1b3b426424bf4459605b48e706eb7fb6d90 (diff) | |
download | dexon-0x-contracts-7a726e2740b8cbc885229ed377ef5fc89502301d.tar.gz dexon-0x-contracts-7a726e2740b8cbc885229ed377ef5fc89502301d.tar.zst dexon-0x-contracts-7a726e2740b8cbc885229ed377ef5fc89502301d.zip |
feat(website): scaffolding for instant page
Diffstat (limited to 'packages/website/ts/pages/instant')
-rw-r--r-- | packages/website/ts/pages/instant/instant.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/website/ts/pages/instant/instant.tsx b/packages/website/ts/pages/instant/instant.tsx new file mode 100644 index 000000000..0ecf39254 --- /dev/null +++ b/packages/website/ts/pages/instant/instant.tsx @@ -0,0 +1,12 @@ +import * as React from 'react'; + +import { Dispatcher } from 'ts/redux/dispatcher'; +import { Translate } from 'ts/utils/translate'; + +export interface InstantProps { + location: Location; + translate: Translate; + dispatcher: Dispatcher; +} + +export const Instant: React.StatelessComponent<InstantProps> = () => <div />; |