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

17 lines
199 B
JavaScript
Raw Normal View History

2020-05-30 01:14:41 +02:00
import { writable } from "svelte/store";
const appStore = writable({});
appStore.actions = {
};
const routerStore = writable({});
routerStore.actions = {
}
export {
appStore,
routerStore
}