aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/index.tsx
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-06-05 01:54:14 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-06-05 01:54:14 +0800
commit9212d67e2fad159fa7eb3feed751814ea515416c (patch)
treec4668c933f94009e57ba0e060561383078d08e42 /packages/website/ts/index.tsx
parentd50fbac5f937602d7a90343ea8ff88cee5c4542f (diff)
downloaddexon-sol-tools-9212d67e2fad159fa7eb3feed751814ea515416c.tar
dexon-sol-tools-9212d67e2fad159fa7eb3feed751814ea515416c.tar.gz
dexon-sol-tools-9212d67e2fad159fa7eb3feed751814ea515416c.tar.bz2
dexon-sol-tools-9212d67e2fad159fa7eb3feed751814ea515416c.tar.lz
dexon-sol-tools-9212d67e2fad159fa7eb3feed751814ea515416c.tar.xz
dexon-sol-tools-9212d67e2fad159fa7eb3feed751814ea515416c.tar.zst
dexon-sol-tools-9212d67e2fad159fa7eb3feed751814ea515416c.zip
Add a documentation page for ethereum types
Diffstat (limited to 'packages/website/ts/index.tsx')
-rw-r--r--packages/website/ts/index.tsx7
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