diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-06-07 02:38:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-07 02:38:43 +0800 |
commit | b1e8545981de55088abcdfa6273a3cc7bc338e77 (patch) | |
tree | 04f95ff2c9005b683a82a9a63eddef156b9d3eab /packages/website/ts/index.tsx | |
parent | 49049b8c126c779d68934eaceb6835ebf3a24a49 (diff) | |
parent | 625f40cfa6fdccd82392c02c1d785fac37d966eb (diff) | |
download | dexon-sol-tools-b1e8545981de55088abcdfa6273a3cc7bc338e77.tar.gz dexon-sol-tools-b1e8545981de55088abcdfa6273a3cc7bc338e77.tar.zst dexon-sol-tools-b1e8545981de55088abcdfa6273a3cc7bc338e77.zip |
Merge pull request #653 from 0xProject/feature/ethereum-types-docs
Add a documentation page for ethereum-types package
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 a6bfe7dd2..719604c02 100644 --- a/packages/website/ts/index.tsx +++ b/packages/website/ts/index.tsx @@ -69,6 +69,9 @@ const LazySubprovidersDocumentation = createLazyComponent('Documentation', async const LazyOrderUtilsDocumentation = createLazyComponent('Documentation', async () => System.import<any>(/* webpackChunkName: "orderUtilsDocs" */ 'ts/containers/order_utils_documentation'), ); +const LazyEthereumTypesDocumentation = createLazyComponent('Documentation', async () => + System.import<any>(/* webpackChunkName: "ethereumTypesDocs" */ 'ts/containers/ethereum_types_documentation'), +); analytics.init(); // tslint:disable-next-line:no-floating-promises @@ -116,6 +119,10 @@ render( path={`${WebsitePaths.SmartContracts}/:version?`} component={LazySmartContractsDocumentation} /> + <Route + path={`${WebsitePaths.EthereumTypes}/:version?`} + component={LazyEthereumTypesDocumentation} + /> {/* Legacy endpoints */} <Route |