8 lines
305 B
TypeScript
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)
|