import 'twin.macro'; // @ts-ignore import { timeFormat } from 'd3'; interface DateCellProps { value: Date; rawValue: string; } const formatDate = timeFormat('%B %-d, %Y'); export function DateCell(props: DateCellProps) { return ( {props.value ? formatDate(props.value) : ''} ); }