aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/jobs/join_0x.tsx
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-06-09 04:27:41 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-06-13 01:41:08 +0800
commit474b93a22f9545fe9bcabe5a80e6a057e66ab286 (patch)
treeb14ecd5cb872a348eac939fac1e58a4c5ed1889f /packages/website/ts/pages/jobs/join_0x.tsx
parent0c2f002a7d854026f1710ab92255f73e17597e2d (diff)
downloaddexon-sol-tools-474b93a22f9545fe9bcabe5a80e6a057e66ab286.tar
dexon-sol-tools-474b93a22f9545fe9bcabe5a80e6a057e66ab286.tar.gz
dexon-sol-tools-474b93a22f9545fe9bcabe5a80e6a057e66ab286.tar.bz2
dexon-sol-tools-474b93a22f9545fe9bcabe5a80e6a057e66ab286.tar.lz
dexon-sol-tools-474b93a22f9545fe9bcabe5a80e6a057e66ab286.tar.xz
dexon-sol-tools-474b93a22f9545fe9bcabe5a80e6a057e66ab286.tar.zst
dexon-sol-tools-474b93a22f9545fe9bcabe5a80e6a057e66ab286.zip
Add link to open positions section
Diffstat (limited to 'packages/website/ts/pages/jobs/join_0x.tsx')
-rw-r--r--packages/website/ts/pages/jobs/join_0x.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/website/ts/pages/jobs/join_0x.tsx b/packages/website/ts/pages/jobs/join_0x.tsx
index f4dbf31a3..fb811cbc4 100644
--- a/packages/website/ts/pages/jobs/join_0x.tsx
+++ b/packages/website/ts/pages/jobs/join_0x.tsx
@@ -3,7 +3,11 @@ import { colors } from '@0xproject/react-shared';
import FlatButton from 'material-ui/FlatButton';
import * as React from 'react';
-export const Join0x = () => (
+export interface Join0xProps {
+ onCallToActionClick: () => void;
+}
+
+export const Join0x = (props: Join0xProps) => (
<div className="clearfix center py4" style={{ backgroundColor: colors.white, color: colors.black }}>
<div className="mx-auto inline-block align-middle py4" style={{ lineHeight: '44px', textAlign: 'center' }}>
<div className="h2 sm-center sm-pt3" style={{ fontFamily: 'Roboto Mono' }}>
@@ -28,6 +32,7 @@ export const Join0x = () => (
textTransform: 'lowercase',
}}
style={{ width: 280, height: 62, borderRadius: 5 }}
+ onClick={props.onCallToActionClick}
/>
</div>
</div>