How could import an svelte component to a "target" different to body?
https://github.com/sveltejs/template/blob/master/src/main.js
I am trying the next:
import App from './App.svelte';
export default new App({ target: document.body.div});
How could I export multiple componentes to different targets?
import App1 from './App1.svelte';
import App2 from './App2.svelte';
export default new App1({ target: document.body.div1});
export default new App2({ target: document.body.div2});