From 6a7e863262569160b699bfeec692b9c1e5368997 Mon Sep 17 00:00:00 2001 From: daishi Date: Tue, 28 May 2024 09:34:12 +0900 Subject: [PATCH] update README 4 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7bdb4fb..b710acf 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ npm install zustand derive-zustand ## Usage ```tsx -import create, { useStore } from 'zustand'; +import { create, useStore } from 'zustand'; import { derive } from 'derive-zustand'; const useCountStore = create<{ count: number; inc: () => void }>((set) => ({