main.js (140B)
1 import App from './App.svelte'; 2 3 const app = new App({ 4 target: document.body, 5 props: { 6 greeting: 'Greetings' 7 } 8 }); 9 10 export default app;