You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.js 133B

12345678910
  1. import App from './App.svelte';
  2. const app = new App({
  3. target: document.body,
  4. props: {
  5. name: 'world'
  6. }
  7. });
  8. export default app;