| 5 | import { create } from 'zustand' |
| 6 | |
| 7 | interface BearStoreState { |
| 8 | bears: number |
| 9 | } |
| 10 | |
| 11 | interface BearStoreAction { |
| 12 | increasePopulation: () => void |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…