docs: fix typo in type (#3001)

This commit is contained in:
Daniil Chervyakov 2025-02-07 06:54:54 +03:00 committed by GitHub
parent 08ec9441b0
commit c3287fa89d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ import { persist, createJSONStorage } from 'zustand/middleware'
type BearStore = {
bears: number
addBear: () => void
addABear: () => void
}
export const useBearStore = create<BearStore>()(