A step-by-step guide to learn React and it's fundamentals.
- HTML/CSS
- Basic JavaScript
- ES6
create-react-app is a tool to build React apps in no time. It allows us to create React apps without any build configuration.
From your terminal, install create-react-app
globally:
npm install -g create-react-app
create-react-app my-app
cd my-app
npm start
Let's get started.