-
Notifications
You must be signed in to change notification settings - Fork 2
React Concepts
NagaSudhir Pulla edited this page Aug 18, 2019
·
3 revisions
Use create-react-app - https://code.visualstudio.com/docs/nodejs/reactjs-tutorial
npm install -g create-react-app
Official react context explanation - https://reactjs.org/docs/context.html
Beginner explanation to react context - https://javascriptplayground.com/context-in-reactjs-applications/
Context acts like a portal in your application in which components can make data available to other components further down the tree without being passed through explictly as props.
Official react fragments explanation - https://reactjs.org/docs/fragments.html
Fragments let you group a list of children without adding extra nodes to the DOM