diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2019-01-07 12:45:46 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2019-01-07 12:45:46 +0800 |
commit | 5e8da70eae3aab86f194a28ee2ecca3368918db2 (patch) | |
tree | ba311de38e107f043c867f8c5d3ba6ab7d2e4af8 /packages/website/ts/pages | |
parent | 99b6ca5b4fd48019a5568a7ba353ebc1040577f4 (diff) | |
download | dexon-sol-tools-5e8da70eae3aab86f194a28ee2ecca3368918db2.tar dexon-sol-tools-5e8da70eae3aab86f194a28ee2ecca3368918db2.tar.gz dexon-sol-tools-5e8da70eae3aab86f194a28ee2ecca3368918db2.tar.bz2 dexon-sol-tools-5e8da70eae3aab86f194a28ee2ecca3368918db2.tar.lz dexon-sol-tools-5e8da70eae3aab86f194a28ee2ecca3368918db2.tar.xz dexon-sol-tools-5e8da70eae3aab86f194a28ee2ecca3368918db2.tar.zst dexon-sol-tools-5e8da70eae3aab86f194a28ee2ecca3368918db2.zip |
feat(website): implement market maker form
Diffstat (limited to 'packages/website/ts/pages')
-rw-r--r-- | packages/website/ts/pages/market_maker.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/website/ts/pages/market_maker.tsx b/packages/website/ts/pages/market_maker.tsx index cb0c011d2..5c0820f61 100644 --- a/packages/website/ts/pages/market_maker.tsx +++ b/packages/website/ts/pages/market_maker.tsx @@ -5,7 +5,7 @@ import { Banner } from 'ts/components/banner'; import { Button } from 'ts/components/button'; import { Action, Definition } from 'ts/components/definition'; import { Hero } from 'ts/components/hero'; -import { ModalContact } from 'ts/components/modals/modal_contact'; +import { ModalContact, ModalContactType } from 'ts/components/modals/modal_contact'; import { Section } from 'ts/components/newLayout'; import { SiteWrap } from 'ts/components/siteWrap'; import { WebsitePaths } from 'ts/types'; @@ -125,7 +125,11 @@ export class NextMarketMaker extends React.Component<NextMarketMakerProps> { mainCta={{ text: 'Explore the Docs', href: `${WebsitePaths.Wiki}#Market-Making-on-0x` }} secondaryCta={{ text: 'Get in Touch', onClick: this._onOpenContactModal.bind(this) }} /> - <ModalContact isOpen={this.state.isContactModalOpen} onDismiss={this._onDismissContactModal} /> + <ModalContact + isOpen={this.state.isContactModalOpen} + onDismiss={this._onDismissContactModal} + modalContactType={ModalContactType.MarketMaker} + /> </SiteWrap> ); } |