1. Getting started 1.1 Fork the starter app The first step is to fork the starter application on Codesandbox. The starter is a slightly modified version of the completed sandbox from workshop 1. Make sure you are signed into Codesandbox and go to the following URL: https://codesandbox.io/s/context-and-hooks-starter-o8cb9z Click on the Fork button in the upper … Continue reading React context and custom Hooks tutorial
Tag: hooks
React Context: When and How to Use It
What is Context? In a typical React application data flow is unidirectional, passed from parent to child. This can lead to an issue known as props drilling. Passing props from high level components down to low level ones creating repetitive code. > Context provides a way to pass data through the component tree without having … Continue reading React Context: When and How to Use It