OispaHallaV2TaiJtn / src / main.js
main.js
Raw
import App from './App.svelte';
import wasm from '../twothousand-forty-eight/Cargo.toml';

const init = async () => {
    const engine = await wasm();


    const app = new App({
        target: document.body,
        props: {
          // https://svelte.dev/docs#Creating_a_component
          engine: engine
        }
    });

};

init();