import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState'; import { localStorageEffect } from '~/utils/recoil-effects'; export const isNavigationSectionOpenComponentState = createComponentState({ key: 'isNavigationSectionOpenComponentState', defaultValue: true, effects: [localStorageEffect()], });