This commit is contained in:
Stephen Zhou 2026-05-08 15:38:02 +08:00
parent ab7650d568
commit 80ac0f4ce3
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/* eslint-disable react/component-hook-factories -- Mirrors foxact's storage hook factory shape. */
import type { Dispatch, SetStateAction } from 'react'
import { useCallback, useEffect, useLayoutEffect as useLayoutEffectFromReact, useMemo, useSyncExternalStore } from 'react'
import { noop } from '../noop'
import { noop } from './noop'
import 'client-only'
/*

View File

@ -3,8 +3,8 @@ import type {
Serializer,
UseStorageParserOption,
UseStorageRawOption,
} from '../create-storage-hook'
import { createStorage } from '../create-storage-hook'
} from './create-storage-hook'
import { createStorage } from './create-storage-hook'
import 'client-only'
export type UseLocalStorageRawOption = UseStorageRawOption