├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── demo ├── index.css ├── index.js ├── public │ ├── favicon.ico │ └── index.html └── webpack.config.js ├── package.json ├── src ├── GameOver.jsx ├── SnakeGame.css └── SnakeGame.jsx └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/demo/index.css -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/demo/public/favicon.ico -------------------------------------------------------------------------------- /demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/demo/public/index.html -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/package.json -------------------------------------------------------------------------------- /src/GameOver.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/src/GameOver.jsx -------------------------------------------------------------------------------- /src/SnakeGame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/src/SnakeGame.css -------------------------------------------------------------------------------- /src/SnakeGame.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/src/SnakeGame.jsx -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaelDrapier/react-simple-snake/HEAD/webpack.config.js --------------------------------------------------------------------------------