Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.35 KB

resources.md

File metadata and controls

58 lines (40 loc) · 1.35 KB

Useful Libraries

How to install?

npm install library_name --save
npm i --save lib_name lib_name2 lib_name3

--save adds it to package.json file

  • create-react-up
create-react-app app_name

info: https://github.com/facebookincubator/create-react-app

React Tips

<div>
    {React.cloneElement(this.props.children, { loggedIn: this.state.loggedIn })}
</div>

Other Tools

  1. React Dev Tools (https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
  2. Allow Control Allow Origin (https://chrome.google.com/webstore/detail/allow-control-allow-origi/nlfbmbojpeacfghkpbjhddihlkkiljbi?hl=en)