Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 364 Bytes

File metadata and controls

19 lines (13 loc) · 364 Bytes

How to create a React App

# Install create react app globally 
npm install -g create-react-app

# Create a new app
create-react-app noteboard
cd noteboard

# Add dependencies
npm install axios immutability-helper react-transition-group --save

# Start the app
npm start

For more information -> https://github.com/facebookincubator/create-react-app