planetwars.dev/web/pw-frontend/src/main.ts
2021-12-23 19:25:56 +01:00

8 lines
184 B
TypeScript

import App from './App.svelte'
import init_wasm_module from "planetwars-rs";
init_wasm_module().then(() => {
const app = new App({
target: document.getElementById('app')
})
})