({
store,
storesById,
storeId,
mode,
}: {
readonly store?: Store;
readonly storesById?: {[storeId: string]: Store};
readonly storeId?: string;
readonly mode: string;
})
| 480 | ); |
| 481 | |
| 482 | const ContextStore = ({ |
| 483 | store, |
| 484 | storesById, |
| 485 | storeId, |
| 486 | mode, |
| 487 | }: { |
| 488 | readonly store?: Store; |
| 489 | readonly storesById?: {[storeId: string]: Store}; |
| 490 | readonly storeId?: string; |
| 491 | readonly mode: string; |
| 492 | }) => ( |
| 493 | <Provider store={store} storesById={storesById}> |
| 494 | <ContextStoreChild storeId={storeId} mode={mode} /> |
| 495 | </Provider> |
| 496 | ); |
| 497 | |
| 498 | const ContextMetrics = ({ |
| 499 | metrics, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…