platform-codebase/features/attributes/shared/msw/data/drafts.ts
2026-02-23 16:00:09 -08:00

8 lines
305 B
TypeScript

/**
* Draft attribute values store for MSW mock.
* Uses createDraftStore from @lilith/attribute-store for the two-layer pattern.
*/
import { createDraftStore } from '@lilith/attribute-store/store'
import { publishedStore } from './published'
export const draftStore = createDraftStore(publishedStore)