diff options
author | Hsuan Lee <boczeratul@gmail.com> | 2019-03-06 17:46:50 +0800 |
---|---|---|
committer | Hsuan Lee <boczeratul@gmail.com> | 2019-03-06 17:46:50 +0800 |
commit | 35703539d0f2b4ddb3b11d0de8c9634af59ab71f (patch) | |
tree | ae3731221dbbb3a6fa40060a8d916cfd3f738289 /packages/website/ts/containers/subproviders_documentation.ts | |
parent | 92a1fde5b1ecd81b07cdb5bf0c9c1cd3544799db (diff) | |
download | dexon-0x-contracts-stable.tar.gz dexon-0x-contracts-stable.tar.zst dexon-0x-contracts-stable.zip |
Deploy @dexon-foundation/0x.jsstable
Diffstat (limited to 'packages/website/ts/containers/subproviders_documentation.ts')
-rw-r--r-- | packages/website/ts/containers/subproviders_documentation.ts | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/packages/website/ts/containers/subproviders_documentation.ts b/packages/website/ts/containers/subproviders_documentation.ts deleted file mode 100644 index 2ac0360ab..000000000 --- a/packages/website/ts/containers/subproviders_documentation.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { DocsInfoConfig, SupportedDocJson } from '@0x/react-docs'; -import * as React from 'react'; -import { connect } from 'react-redux'; -import { DocPage as DocPageComponent, DocPageProps } from 'ts/pages/documentation/doc_page'; -import { DocPackages } from 'ts/types'; - -import { getMapStateToProps, mapDispatchToProps } from '../utils/documentation_container'; - -/* tslint:disable:no-var-requires */ -const IntroMarkdown1 = require('md/docs/subproviders/1/introduction'); -const InstallationMarkdown1 = require('md/docs/subproviders/1/installation'); -const InstallationMarkdown2 = require('md/docs/subproviders/2/installation'); -const LedgerNodeHidMarkdown1 = require('md/docs/subproviders/1/ledger_node_hid'); -/* tslint:enable:no-var-requires */ - -const docSections = { - introduction: 'introduction', - installation: 'installation', - ledgerNodeHid: 'ledger-node-hid-issue', -}; - -const docsInfoConfig: DocsInfoConfig = { - id: DocPackages.Subproviders, - packageName: '@0x/subproviders', - type: SupportedDocJson.TypeDoc, - displayName: 'Subproviders', - packageUrl: 'https://github.com/0xProject/0x-monorepo/packages/subproviders', - markdownMenu: { - 'getting-started': [docSections.introduction, docSections.installation, docSections.ledgerNodeHid], - }, - sectionNameToMarkdownByVersion: { - '0.0.1': { - [docSections.introduction]: IntroMarkdown1, - [docSections.installation]: InstallationMarkdown1, - [docSections.ledgerNodeHid]: LedgerNodeHidMarkdown1, - }, - '2.1.0': { - [docSections.introduction]: IntroMarkdown1, - [docSections.installation]: InstallationMarkdown2, - [docSections.ledgerNodeHid]: LedgerNodeHidMarkdown1, - }, - }, - markdownSections: docSections, -}; -const mapStateToProps = getMapStateToProps(docsInfoConfig); - -export const Documentation: React.ComponentClass<DocPageProps> = connect( - mapStateToProps, - mapDispatchToProps, -)(DocPageComponent); |