diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2019-01-04 08:18:33 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2019-01-04 08:18:33 +0800 |
commit | c82393d76350bdfa55d4643f68423ae2e2ab700e (patch) | |
tree | ceb1cad5508ad17b7518639d97e01cbb02a55348 | |
parent | 2111ea159e48206a63f311dfc1ed56a3925603c7 (diff) | |
download | dexon-sol-tools-c82393d76350bdfa55d4643f68423ae2e2ab700e.tar dexon-sol-tools-c82393d76350bdfa55d4643f68423ae2e2ab700e.tar.gz dexon-sol-tools-c82393d76350bdfa55d4643f68423ae2e2ab700e.tar.bz2 dexon-sol-tools-c82393d76350bdfa55d4643f68423ae2e2ab700e.tar.lz dexon-sol-tools-c82393d76350bdfa55d4643f68423ae2e2ab700e.tar.xz dexon-sol-tools-c82393d76350bdfa55d4643f68423ae2e2ab700e.tar.zst dexon-sol-tools-c82393d76350bdfa55d4643f68423ae2e2ab700e.zip |
feature(website): add market making page
-rw-r--r-- | packages/website/ts/index.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/website/ts/index.tsx b/packages/website/ts/index.tsx index df77e4b76..45054772c 100644 --- a/packages/website/ts/index.tsx +++ b/packages/website/ts/index.tsx @@ -24,6 +24,7 @@ import { NextEcosystem } from 'ts/pages/ecosystem'; import { Next0xInstant } from 'ts/pages/instant'; import { NextLanding } from 'ts/pages/landing'; import { NextLaunchKit } from 'ts/pages/launch_kit'; +import { NextMarketMaker } from 'ts/pages/market_maker'; import { NextWhy } from 'ts/pages/why'; // Check if we've introduced an update that requires us to clear the tradeHistory local storage entries @@ -99,6 +100,11 @@ render( {/* Next (new site) routes */} <Route exact={true} path="/" component={NextLanding as any} /> <Route exact={true} path={WebsitePaths.Why} component={NextWhy as any} /> + <Route + exact={true} + path={WebsitePaths.MarketMaker} + component={NextMarketMaker as any} + /> <Route exact={true} path={WebsitePaths.Instant} component={Next0xInstant as any} /> <Route exact={true} path={WebsitePaths.LaunchKit} component={NextLaunchKit as any} /> <Route exact={true} path={WebsitePaths.Ecosystem} component={NextEcosystem as any} /> |