react-old-snake-game
v1.0.3
Published
Snake game based on react
Downloads
1
Readme
React based snake game. Main purpose - use as little packages as possible to grasp basic main principles of plain react.
Installation
yarn add react-old-snake-game
And you should import styles
import 'react-old-snake-game/dist/assets/css/index.css'
Usage
import Snake from 'react-old-snake-game';
import 'react-old-snake-game/dist/assets/css/index.css'
const App = () => {
return (
<Snake/>
)
}
export default App
Controls
- With arrow keys
- w goes ↑
- d goes →
- s goes ↓
- a goes ←