()
| 661 | const { setState } = useBoundStore |
| 662 | |
| 663 | function Count1() { |
| 664 | const c = useBoundStore((s) => s.count) |
| 665 | return <div>count1: {c}</div> |
| 666 | } |
| 667 | |
| 668 | function Count2() { |
| 669 | const c = useBoundStore((s) => s.count) |
nothing calls this directly
no test coverage detected
searching dependent graphs…