import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState'; import { type PageLayoutBreakpoint } from '@/page-layout/constants/PageLayoutBreakpoints'; import { PageLayoutComponentInstanceContext } from './contexts/PageLayoutComponentInstanceContext'; export const pageLayoutCurrentBreakpointComponentState = createComponentState({ key: 'pageLayoutCurrentBreakpointComponentState', defaultValue: 'desktop', componentInstanceContext: PageLayoutComponentInstanceContext, });