({
indexes,
indexesById,
indexesId,
}: {
readonly indexes?: Indexes;
readonly indexesById?: {[indexesId: string]: Indexes};
readonly indexesId?: string;
})
| 517 | ); |
| 518 | |
| 519 | const ContextIndexes = ({ |
| 520 | indexes, |
| 521 | indexesById, |
| 522 | indexesId, |
| 523 | }: { |
| 524 | readonly indexes?: Indexes; |
| 525 | readonly indexesById?: {[indexesId: string]: Indexes}; |
| 526 | readonly indexesId?: string; |
| 527 | }) => ( |
| 528 | <Provider indexes={indexes} indexesById={indexesById}> |
| 529 | <ContextIndexesChild indexesId={indexesId} /> |
| 530 | </Provider> |
| 531 | ); |
| 532 | |
| 533 | const ContextIndexesChild = ({indexesId}: {readonly indexesId?: string}) => ( |
| 534 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…