planetwars.dev/web/pw-frontend/src/main.ts

10 lines
187 B
TypeScript
Raw Normal View History

2021-12-22 13:59:13 +01:00
import App from './App.svelte'
import load_wasm_module from "planetwars-rs";
load_wasm_module().then(() => {
const app = new App({
target: document.getElementById('app')
})
});