UNPKG

slanted-gamedev-toolz

Version:

A slanted mix of tools for your brilliant ideas in game design.

9 lines (8 loc) 348 B
import { jsx as _jsx } from "react/jsx-runtime"; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore import { GamepadController } from "../GamePad/components/GamepadController"; export const GamepadOverlay = () => { const style = {}; return (_jsx("div", { style: style, children: _jsx(GamepadController, {}) })); };