mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-24 00:31:50 +00:00
6 lines
207 B
TypeScript
6 lines
207 B
TypeScript
import { writable } from 'svelte/store'
|
|
import { type CompAndProps } from './popups'
|
|
import { type LabelAndProps } from './types'
|
|
|
|
export const modalStore = writable<Array<LabelAndProps | CompAndProps>>([])
|