UNPKG

@tdurtschi/bug

Version:

Bug is a simulation that models a weevil walking around in an HTML canvas.

10 lines (9 loc) 224 B
/// <reference types="react" /> import { Game } from '../../core/game-engine'; interface Props { game: Game; height: number; width: number; } declare const App: (props: Props) => JSX.Element; export default App;