docs: correct import alias syntax (#1889)

This commit is contained in:
Kiku 2023-06-21 19:01:30 +08:00 committed by GitHub
parent e8597ae77f
commit 7276b531bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ const useSlice = create<State & Actions>()((set, get) => ({
Resetting multiple stores at once
```ts
import { create: _create, StateCreator } from 'zustand'
import { create as _create, StateCreator } from 'zustand'
const resetters: (() => void)[] = []