({
storeId,
mode,
}: {
readonly storeId?: string;
readonly mode: string;
})
| 427 | }); |
| 428 | |
| 429 | const ContextStoreChild = ({ |
| 430 | storeId, |
| 431 | mode, |
| 432 | }: { |
| 433 | readonly storeId?: string; |
| 434 | readonly mode: string; |
| 435 | }) => |
| 436 | mode == 'tables' ? ( |
| 437 | <ContextTablesChild storeId={storeId} /> |
| 438 | ) : mode == 'table' ? ( |
| 439 | <ContextTableChild storeId={storeId} /> |
| 440 | ) : mode == 'row' ? ( |
| 441 | <ContextRowChild storeId={storeId} /> |
| 442 | ) : ( |
| 443 | <ContextCellChild storeId={storeId} /> |
| 444 | ); |
| 445 | |
| 446 | const ContextTablesChild = ({storeId}: {readonly storeId?: string}) => ( |
| 447 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…