1
0
Fork 0
mirror of synced 2024-09-12 23:43:09 +12:00
budibase/packages/client/src/index.js

11 lines
273 B
JavaScript

import ClientApp from "./components/ClientApp.svelte"
// Initialise client app
const loadBudibase = () => {
new ClientApp({
target: window.document.body,
})
}
// Attach to window so the HTML template can call this when it loads
window.loadBudibase = loadBudibase