xxxxxxxxxx
<div id="app"></div>
<script>
import { Store } from 'svelte/store';
import { Router } from 'svelte-router';
import App from './App.html'
const store = new Store();
const router = new Router();
router.connect(store);
const app = new App({
target: document.getElementById('app'),
store
});
</script>