Files
windmill/frontend/src/lib/components/apps/store.ts
Ruben Fiszel 13242abff1 feat: add support for full fleged apps (react, svelte, vue) (#1536)
* add react support

* use whoami

* update

* update

* update

* create react app

* all

* sqlx
2023-05-08 19:10:45 +02:00

8 lines
226 B
TypeScript

import type { Policy } from '$lib/gen'
import { writable } from 'svelte/store'
import type { App } from './types'
export const importStore = writable<{ summary: string; value: App; policy: Policy } | undefined>(
undefined
)