({
index,
data,
style
}: RowComponentProps<RowComponentData>)
| 5 | }; |
| 6 | |
| 7 | export function RowComponent({ |
| 8 | index, |
| 9 | data, |
| 10 | style |
| 11 | }: RowComponentProps<RowComponentData>) { |
| 12 | return ( |
| 13 | <div className="flex items-center px-1" style={style}> |
| 14 | {data[index]} |
| 15 | </div> |
| 16 | ); |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected