| 5 | import { KeyCodes, Table, TableRow } from './controls'; |
| 6 | |
| 7 | export interface LegendViewProps { |
| 8 | legend: Legend; |
| 9 | onClick: (e: Event, legend: Legend, clickedIndex: number) => void; |
| 10 | } |
| 11 | |
| 12 | export const LegendView: StatelessComponent<LegendViewProps> = (props: StatelessProps<LegendViewProps>) => { |
| 13 | const rows: TableRow[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected