Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 914 Bytes

FIRST_STEPS.md

File metadata and controls

36 lines (24 loc) · 914 Bytes

React

links

  1. babeljs.io/repl

Install

npm i -g create-react-app

Configure extensions on Visual Studio Code

  1. Open extensions (CTRL+SHIFT+X)
  2. install Simple React Snippets
  3. install Prettier
  4. install Live Server (auto refresh page)
  5. Go to setting and enable Format on Save

Configure extensions on Chrome

  1. React Developer Tools

Create an app

  1. npx create-react-app react-app
  2. cd react-app
  3. npm start (it will open a browser with react initial page)
  4. install bootstrap (npm i bootstrap)

Thoubeshooting