import { createLocalStorageState } from 'foxact/create-local-storage-state' const EDUCATION_VERIFYING_LOCALSTORAGE_ITEM = 'educationVerifying' const [useEducationVerifying, _useEducationVerifyingValue, useSetEducationVerifying] = createLocalStorageState(EDUCATION_VERIFYING_LOCALSTORAGE_ITEM, 'no', { raw: true }) const [ useEducationReverifyPrevExpireAt, _useEducationReverifyPrevExpireAtValue, useSetEducationReverifyPrevExpireAt, ] = createLocalStorageState('education-reverify-prev-expire-at', 0) const [ useEducationReverifyHasNoticed, _useEducationReverifyHasNoticedValue, useSetEducationReverifyHasNoticed, ] = createLocalStorageState('education-reverify-has-noticed', false) const [ useEducationExpiredHasNoticed, _useEducationExpiredHasNoticedValue, useSetEducationExpiredHasNoticed, ] = createLocalStorageState('education-expired-has-noticed', false) export { useEducationExpiredHasNoticed, useEducationReverifyHasNoticed, useEducationReverifyPrevExpireAt, useEducationVerifying, useSetEducationExpiredHasNoticed, useSetEducationReverifyHasNoticed, useSetEducationReverifyPrevExpireAt, useSetEducationVerifying, }