1
0
Fork 0
tsgames/src/games/playground/index.tsx

14 lines
291 B
TypeScript

import { awoo } from "./awoo.wasm";
import { render } from "preact";
import attack from './assets/attack.wav';
export default function main() {
awoo(42, 69);
render(
<button onClick={() => attack.play()}>
Attack
</button>,
document.body
);
}