14 lines
517 B
JavaScript
14 lines
517 B
JavaScript
export { authStore } from "./auth"
|
|
export { notificationStore } from "./notification"
|
|
export { routeStore } from "./routes"
|
|
export { screenStore } from "./screens"
|
|
export { builderStore } from "./builder"
|
|
export { dataSourceStore } from "./dataSource"
|
|
export { confirmationStore } from "./confirmation"
|
|
|
|
// Context stores are layered and duplicated, so it is not a singleton
|
|
export { createContextStore } from "./context"
|
|
|
|
// Initialises an app by loading screens and routes
|
|
export { initialise } from "./initialise"
|