hi there, I was testing out your example, I think you have an issue with your import statement for 'useGamepads.'
the demo returned the error:
TypeError: awesome_react_gamepads__WEBPACK_IMPORTED_MODULE_3___default(...) is not a function
to get it to work I had to change
import useGamepads from 'awesome-react-gamepads';
to
import { useGamepads } from 'awesome-react-gamepads';
this is because useGamepads is not declared default in the module.
thanks!
hi there, I was testing out your example, I think you have an issue with your import statement for 'useGamepads.'
the demo returned the error:
TypeError: awesome_react_gamepads__WEBPACK_IMPORTED_MODULE_3___default(...) is not a function
to get it to work I had to change
import useGamepads from 'awesome-react-gamepads';
to
import { useGamepads } from 'awesome-react-gamepads';
this is because useGamepads is not declared default in the module.
thanks!