diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-10-18 01:57:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 01:57:57 +0800 |
commit | b2012bf1610eda65afe180b04df6c9ee8f5dc659 (patch) | |
tree | 1beb80ae49db8a19bdcd2039fb471d1c60b8656a /packages/website/ts/index.tsx | |
parent | c767404ad09ca9fdacf9ab43c0e6b13fc70bffb9 (diff) | |
parent | 81505ba56cc8a5b0a2991b07e8320a442ee74f27 (diff) | |
download | dexon-sol-tools-b2012bf1610eda65afe180b04df6c9ee8f5dc659.tar dexon-sol-tools-b2012bf1610eda65afe180b04df6c9ee8f5dc659.tar.gz dexon-sol-tools-b2012bf1610eda65afe180b04df6c9ee8f5dc659.tar.bz2 dexon-sol-tools-b2012bf1610eda65afe180b04df6c9ee8f5dc659.tar.lz dexon-sol-tools-b2012bf1610eda65afe180b04df6c9ee8f5dc659.tar.xz dexon-sol-tools-b2012bf1610eda65afe180b04df6c9ee8f5dc659.tar.zst dexon-sol-tools-b2012bf1610eda65afe180b04df6c9ee8f5dc659.zip |
Merge pull request #1139 from 0xProject/feature/website/asset-buyer-docs
[asset-buyer][monorepo-scripts][website] Add asset-buyer documentation
Diffstat (limited to 'packages/website/ts/index.tsx')
-rw-r--r-- | packages/website/ts/index.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/website/ts/index.tsx b/packages/website/ts/index.tsx index d4a79cc4f..bb218eac1 100644 --- a/packages/website/ts/index.tsx +++ b/packages/website/ts/index.tsx @@ -68,6 +68,9 @@ const LazyOrderUtilsDocumentation = createLazyComponent('Documentation', async ( const LazyEthereumTypesDocumentation = createLazyComponent('Documentation', async () => import(/* webpackChunkName: "ethereumTypesDocs" */ 'ts/containers/ethereum_types_documentation'), ); +const LazyAssetBuyerDocumentation = createLazyComponent('Documentation', async () => + import(/* webpackChunkName: "assetBuyerDocs" */ 'ts/containers/asset_buyer_documentation'), +); const DOCUMENT_TITLE = '0x: The Protocol for Trading Tokens'; const DOCUMENT_DESCRIPTION = 'An Open Protocol For Decentralized Exchange On The Ethereum Blockchain'; @@ -133,7 +136,10 @@ render( path={`${WebsitePaths.EthereumTypes}/:version?`} component={LazyEthereumTypesDocumentation} /> - + <Route + path={`${WebsitePaths.AssetBuyer}/:version?`} + component={LazyAssetBuyerDocumentation} + /> {/* Legacy endpoints */} <Route path={`${WebsiteLegacyPaths.ZeroExJs}/:version?`} |