Simple React Webpack Arkanoid Game
Very simple game of old game Arkanoid made with ReactJS. You can include this game into your application.
- Simple src/index.jsx and src/index.css (local module css).
- Webpack configuration for development (with hot reloading) and production (with minification).
- CSS module loading, so you can include your css by
import styles from './path/to.css';
. - Both js(x) and css hot loaded during development.
> $ git clone THIS_REPO_URL
- Then install the dependencies:
> $ npm install
- Run development server:
> $ npm start
Open the web browser to http://localhost:8888/
Please contribute to the project if you think this can be done better in anyway even for this README :)