SandpointsEditPage/src/main.js

11 lines
133 B
JavaScript
Raw Normal View History

2021-03-25 16:02:55 +01:00
import App from './App.svelte';
const app = new App({
target: document.body,
props: {
name: 'world'
}
});
2021-06-08 12:39:07 +02:00
export default app;