An open API service indexing awesome lists of open source software.

https://github.com/palerdot/simple-react-cricket-quiz

simple cricket quiz app built with vanilla React
https://github.com/palerdot/simple-react-cricket-quiz

Last synced: about 1 year ago
JSON representation

simple cricket quiz app built with vanilla React

Awesome Lists containing this project

README

          

## Simple React Cricket Quiz

Simple React Cricket Quiz built with Vanilla React

## Setting up

This project is bootstrapped with `create-react-app`. Please make sure you have **latest node** (preferable 6+)

### Hosting

This app is hosted statically in heroku here - https://simple-react-cricket-quiz.herokuapp.com/

It is done by doing this simple trick of mimicking a php app as mentioned in https://gist.github.com/wh1tney/2ad13aa5fbdd83f6a489

```javascript
// install dependencies
yarn install
// start the dev server
yarn start
// you can also make a production build and run the stuff inside the build folder
```