From 7e3af2ecc1b6bc91085c7fee580bcb91947a3339 Mon Sep 17 00:00:00 2001 From: ocavue Date: Tue, 17 Oct 2023 15:35:34 +0800 Subject: [PATCH] doc: remove duplicate imports from jotai-scope documentation --- docs/integrations/scope.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/integrations/scope.mdx b/docs/integrations/scope.mdx index 1f8e67dc51..80107b157f 100644 --- a/docs/integrations/scope.mdx +++ b/docs/integrations/scope.mdx @@ -33,10 +33,6 @@ import { useAtom as useScopedAtom, } from 'jotai-scope' import { atom, useAtom } from 'jotai' -import { - Provider as ScopedProvider, - useAtom as useScopedAtom, -} from 'jotai-scope' const countAtom = atom(0) const anotherCountAtom = atom(0)