({ id }: Props)
| 583 | } |
| 584 | |
| 585 | function Child({ id }: Props) { |
| 586 | const text = useBoundStore((s) => s.childItems[id]?.text) |
| 587 | return <div>{text}</div> |
| 588 | } |
| 589 | |
| 590 | function Parent() { |
| 591 | const childStates = useBoundStore((s) => s.childItems) |
nothing calls this directly
no test coverage detected
searching dependent graphs…