Main.shssdhakchina 02 Feb 2022 React Custom Hooks Hooks are reusable functions. When you have component logic that needs to be used by multiple components, we ca...
Main.shssdhakchina 02 Feb 2022 React Forms in Functional Components Just like in HTML, React uses forms to allow users to interact with the web page. Adding For...
Main.shssdhakchina 02 Feb 2022 React Memo Using memo will cause React to skip rendering a component if its props have not changed. This can improve performance. ...
Main.shssdhakchina 02 Feb 2022 React useCallback Hook The React useCallback Hook returns a memoized callback function. Think of memoization as caching a value so...
Main.shssdhakchina 02 Feb 2022 React useContext Hook React Context React Context is a way to manage state globally. It can be used together with the useState Ho...
Main.shssdhakchina 02 Feb 2022 React useEffect Hooks The useEffect Hook allows you to perform side effects in your components. Some examples of side effects are:...
Main.shssdhakchina 02 Feb 2022 React useMemo Hook The React useMemo Hook returns a memoized value. Think of memoization as caching a value so that it does not ne...
Main.shssdhakchina 02 Feb 2022 React useReducer Hook The useReducer Hook is similar to the useState Hook. It allows for custom state logic. If you find yourself ...
Main.shssdhakchina 02 Feb 2022 React useRef Hook The useRef Hook allows you to persist values between renders. It can be used to store a mutable value that does ...
Main.shssdhakchina 02 Feb 2022 React Hooks Hooks were added to React in version 16.8. Hooks allow function components to have access to state and other React fea...