import tw from 'twin.macro'; interface CategoryCellProps { value: string; categoryColor: string; } export function CategoryCell(props: CategoryCellProps) { return ( {props.value} ); }