| 1 | import { create } from 'zustand' |
| 2 | |
| 3 | interface StarStore { |
| 4 | stars: number |
| 5 | setStars: (count: number) => void |
| 6 | } |
| 7 | |
| 8 | export const useStarStore = create<StarStore>((set) => ({ |
| 9 | stars: 100, |
nothing calls this directly
no outgoing calls
no test coverage detected