(
props: {
readonly indexes: any;
readonly indexesId?: Id;
readonly indexId: Id;
} & StoreProp,
)
| 831 | }; |
| 832 | |
| 833 | const IndexView = ( |
| 834 | props: { |
| 835 | readonly indexes: any; |
| 836 | readonly indexesId?: Id; |
| 837 | readonly indexId: Id; |
| 838 | } & StoreProp, |
| 839 | ) => ( |
| 840 | <Details |
| 841 | uniqueId={getUniqueId('i', props.indexesId, props.indexId)} |
| 842 | title={'Index: ' + props.indexId} |
| 843 | s={props.s} |
| 844 | > |
| 845 | {arrayMap(useSliceIds(props.indexId, props.indexes)(), (sliceId) => ( |
| 846 | <SliceView |
| 847 | indexes={props.indexes} |
| 848 | indexesId={props.indexesId} |
| 849 | indexId={props.indexId} |
| 850 | sliceId={sliceId} |
| 851 | s={props.s} |
| 852 | /> |
| 853 | ))} |
| 854 | </Details> |
| 855 | ); |
| 856 | |
| 857 | const IndexesView = (props: {readonly indexesId?: Id} & StoreProp) => { |
| 858 | const indexes = useIndexes(props.indexesId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…