({
relationships,
relationshipsById,
relationshipsId,
}: {
readonly relationships?: Relationships;
readonly relationshipsById?: {[relationshipsId: string]: Relationships};
readonly relationshipsId?: string;
})
| 540 | ); |
| 541 | |
| 542 | const ContextRelationships = ({ |
| 543 | relationships, |
| 544 | relationshipsById, |
| 545 | relationshipsId, |
| 546 | }: { |
| 547 | readonly relationships?: Relationships; |
| 548 | readonly relationshipsById?: {[relationshipsId: string]: Relationships}; |
| 549 | readonly relationshipsId?: string; |
| 550 | }) => ( |
| 551 | <Provider relationships={relationships} relationshipsById={relationshipsById}> |
| 552 | <ContextRelationshipsChild relationshipsId={relationshipsId} /> |
| 553 | </Provider> |
| 554 | ); |
| 555 | |
| 556 | const ContextRelationshipsChild = ({ |
| 557 | relationshipsId, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…