budibase/packages/client/src/state/store.js

10 lines
186 B
JavaScript

import { writable } from "svelte/store"
const appStore = writable({})
appStore.actions = {}
const routerStore = writable({})
routerStore.actions = {}
export { appStore, routerStore }