aboutsummaryrefslogtreecommitdiff
path: root/web/pw-frontend/src/main.ts
blob: bbe6382c6271436c673cadaf05283545342c7e25 (plain)
1
2
3
4
5
6
7
8
import App from './App.svelte'
import init_wasm_module from "planetwars-rs";

init_wasm_module().then(() => {
  const app = new App({
    target: document.getElementById('app')
  })
})