aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2019-01-07 12:45:46 +0800
committerBrandon Millman <brandon.millman@gmail.com>2019-01-07 12:45:46 +0800
commit5e8da70eae3aab86f194a28ee2ecca3368918db2 (patch)
treeba311de38e107f043c867f8c5d3ba6ab7d2e4af8 /packages/website/ts/pages
parent99b6ca5b4fd48019a5568a7ba353ebc1040577f4 (diff)
downloaddexon-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.tsx8
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>
);
}