import * as _ from 'lodash'; import { Table, TableBody, TableHeader, TableHeaderColumn, TableRow, TableRowColumn } from 'material-ui/Table'; import * as React from 'react'; const POSITIONS = [ { name: 'Community Director', department: 'Marketing', office: 'Remote / San Francisco', }, { name: 'Data Scientist / Data Engineer', department: 'Engineering', office: 'Remote / San Francisco', }, { name: 'Executive Assitant / Office Manager', department: 'Operations', office: 'Remote / San Francisco', }, { name: 'Research Fellow - Economics / Governance', department: 'Engineering', office: 'Remote / San Francisco', }, { name: 'Software Engineer - Blockchain', department: 'Engineer', office: 'Remote / San Francisco', }, { name: 'Software Engineer - Full-stack', department: 'Marketing', office: 'Remote / San Francisco', }, ]; export interface OpenPositionsProps { hash: string; } export const OpenPositions = (props: OpenPositionsProps) => { const labelStyle = { fontFamily: 'Roboto Mono', fontSize: 18 }; return (
Position Department Office {_.map(POSITIONS, position => { return ( {position.name} {position.department} {position.office} ); })}
); };