({
synchronizer,
synchronizersById,
synchronizerId,
}: {
readonly synchronizer?: Synchronizer;
readonly synchronizersById?: {[synchronizerId: string]: Synchronizer};
readonly synchronizerId?: string;
})
| 648 | }) => <>{usePersister(persisterId)?.getStatus()}</>; |
| 649 | |
| 650 | const ContextSynchronizer = ({ |
| 651 | synchronizer, |
| 652 | synchronizersById, |
| 653 | synchronizerId, |
| 654 | }: { |
| 655 | readonly synchronizer?: Synchronizer; |
| 656 | readonly synchronizersById?: {[synchronizerId: string]: Synchronizer}; |
| 657 | readonly synchronizerId?: string; |
| 658 | }) => ( |
| 659 | <Provider synchronizer={synchronizer} synchronizersById={synchronizersById}> |
| 660 | <ContextSynchronizerChild synchronizerId={synchronizerId} /> |
| 661 | </Provider> |
| 662 | ); |
| 663 | |
| 664 | const ContextSynchronizerChild = ({ |
| 665 | synchronizerId, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…