1
1
Fork 0
hugo-svelte/svelte/main.js
2019-10-03 18:07:50 -04:00

10 lines
No EOL
132 B
JavaScript

import App from './App.svelte';
const app = new App({
target: document.body,
props: {
name: 'world'
}
});
export default app;