import { colors } from '@0xproject/react-shared'; import * as _ from 'lodash'; import * as React from 'react'; import { BulletedItem, BulletedItemProps } from 'ts/pages/jobs/bulleted_item'; export interface BulletedItemListProps { headerText: string; bulletedItems: BulletedItemProps[]; } export const BulletedItemList = (props: BulletedItemListProps) => { return (
{props.headerText}
{_.map(props.bulletedItems, bulletedItemProps => { return ( ); })}
); };