platform/packages/ui/src/modals.ts

6 lines
207 B
TypeScript
Raw Normal View History

import { writable } from 'svelte/store'
import { type CompAndProps } from './popups'
import { type LabelAndProps } from './types'
export const modalStore = writable<Array<LabelAndProps | CompAndProps>>([])