For getting start you have to download this file or clone it.
Now you have to create two folder like this
├── dist
│ ├── index.html # React Icon, You may change if you wish.
└── src
├── index.js # This is the root of your app. Contains static HTML right now.
in index.html file create a div and Add a script tag ,
<div id="app"></div>
<script src="./bundle.js"></script>Now you need to Run
npm installIt'll automatically Install all dependencies.
now for start sever run this command
npm start