dovydasbu / react-old-snake-game

Snake game based on react.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 ←

License

MIT

About

Snake game based on react.


Languages

Language:JavaScript 98.7%Language:CSS 1.3%