2020-11-18 20:18:18 +01:00
|
|
|
export { authStore } from "./auth"
|
2021-01-22 10:42:15 +01:00
|
|
|
export { notificationStore } from "./notifier"
|
2020-11-18 20:18:18 +01:00
|
|
|
export { routeStore } from "./routes"
|
|
|
|
export { screenStore } from "./screens"
|
2020-11-24 10:31:54 +01:00
|
|
|
export { builderStore } from "./builder"
|
2020-11-24 12:02:10 +01:00
|
|
|
export { bindingStore } from "./binding"
|
|
|
|
|
|
|
|
// Data stores are layered and duplicated, so it is not a singleton
|
2020-11-25 10:50:51 +01:00
|
|
|
export { createDataStore, dataStore } from "./data"
|
2020-12-11 15:24:19 +01:00
|
|
|
|
|
|
|
// Initialises an app by loading screens and routes
|
|
|
|
export { initialise } from "./initialise"
|