diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-05-03 00:42:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-03 00:42:59 +0800 |
commit | a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0 (patch) | |
tree | 7f7e45f54cdd8fc2830621cbb4f89093bef8cbf4 /packages/website/ts/index.tsx | |
parent | f08738e13379ea86a33ad9be9f7579e637e69acb (diff) | |
parent | 3585326d7eb82ae730752d1956876b22f7638fa6 (diff) | |
download | dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.gz dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.bz2 dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.lz dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.xz dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.tar.zst dexon-sol-tools-a054b485d01d5003d47e7959a4fe1e1c0a6dc6a0.zip |
Merge pull request #559 from 0xProject/feature/order-utils
Move order utils to @0xproject/order-utils
Diffstat (limited to 'packages/website/ts/index.tsx')
-rw-r--r-- | packages/website/ts/index.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/website/ts/index.tsx b/packages/website/ts/index.tsx index d99187151..9535dd222 100644 --- a/packages/website/ts/index.tsx +++ b/packages/website/ts/index.tsx @@ -61,6 +61,9 @@ const LazySolCovDocumentation = createLazyComponent('Documentation', async () => const LazySubprovidersDocumentation = createLazyComponent('Documentation', async () => System.import<any>(/* webpackChunkName: "subproviderDocs" */ 'ts/containers/subproviders_documentation'), ); +const LazyOrderUtilsDocumentation = createLazyComponent('Documentation', async () => + System.import<any>(/* webpackChunkName: "orderUtilsDocs" */ 'ts/containers/order_utils_documentation'), +); analytics.init(); // tslint:disable-next-line:no-floating-promises @@ -94,6 +97,10 @@ render( component={LazySubprovidersDocumentation} /> <Route + path={`${WebsitePaths.OrderUtils}/:version?`} + component={LazyOrderUtilsDocumentation} + /> + <Route path={`${WebsitePaths.Web3Wrapper}/:version?`} component={LazyWeb3WrapperDocumentation} /> |