mirror of
https://github.com/smartyellow/status.git
synced 2025-01-18 21:47:58 +00:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
import App from './app.svelte';
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
new App({
|
|
target: document.getElementsByTagName('body')[0],
|
|
});
|
|
});
|