1
0
Fork 0
mirror of synced 2024-09-09 22:16:26 +12:00
budibase/packages/client/src/store/initialise.js

7 lines
202 B
JavaScript

import { routeStore } from "./routes"
import { screenStore } from "./screens"
export async function initialise() {
await routeStore.actions.fetchRoutes()
await screenStore.actions.fetchScreens()
}