diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-03 17:14:01 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-03 17:14:01 +0800 |
commit | 6dd656bdfc5e9878a8a6e332b4ea844556f75d56 (patch) | |
tree | c5fb6f39b4e32142047c667006a5beca5c147813 /packages/website/ts/index.tsx | |
parent | b5d98a280352d8f697876b35741fcf7b60b3b569 (diff) | |
download | dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.gz dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.bz2 dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.lz dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.xz dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.zst dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.zip |
Add OrderWatcher docs page
Diffstat (limited to 'packages/website/ts/index.tsx')
-rw-r--r-- | packages/website/ts/index.tsx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/packages/website/ts/index.tsx b/packages/website/ts/index.tsx index 36b2f6b87..cfe8a1c9c 100644 --- a/packages/website/ts/index.tsx +++ b/packages/website/ts/index.tsx @@ -40,6 +40,9 @@ const LazyZeroExJSDocumentation = createLazyComponent('Documentation', async () const LazyContractWrappersDocumentation = createLazyComponent('Documentation', async () => System.import<any>(/* webpackChunkName: "contractWrapperDocs" */ 'ts/containers/contract_wrappers_documentation'), ); +const LazyOrderWatcherDocumentation = createLazyComponent('Documentation', async () => + System.import<any>(/* webpackChunkName: "orderWatcherDocs" */ 'ts/containers/order_watcher_documentation'), +); const LazySmartContractsDocumentation = createLazyComponent('Documentation', async () => System.import<any>(/* webpackChunkName: "smartContractDocs" */ 'ts/containers/smart_contracts_documentation'), ); @@ -83,7 +86,14 @@ render( <Route path={WebsitePaths.About} component={About as any} /> <Route path={WebsitePaths.Wiki} component={Wiki as any} /> <Route path={`${WebsitePaths.ZeroExJs}/:version?`} component={LazyZeroExJSDocumentation} /> - <Route path={`${WebsitePaths.ContractWrappers}/:version?`} component={LazyContractWrappersDocumentation} /> + <Route + path={`${WebsitePaths.ContractWrappers}/:version?`} + component={LazyContractWrappersDocumentation} + /> + <Route + path={`${WebsitePaths.OrderWatcher}/:version?`} + component={LazyOrderWatcherDocumentation} + /> <Route path={`${WebsitePaths.Connect}/:version?`} component={LazyConnectDocumentation} /> <Route path={`${WebsitePaths.SolCompiler}/:version?`} |