📄️ Introduction
This section contains extra material for self learning.
📄️ Context API
The Context API in React is a way to manage and share state across multiple components without the need to pass props down the component tree. It is useful for handling global or shared state, such as user authentication status, theme, or any data that multiple components need access to.
📄️ Custom Hooks
You have learnt that React provides built-in hooks such as useState and useEffect. You can also create your own hook functions for your own purposes. Custom hooks allow you to extract and reuse logic across multiple components, making your code more modular and maintainable.
📄️ React Query
Data Fetching Libraries
📄️ Graph QL
GraphQL is query language for API and server-side runtime for execute queries (https://graphql.org/). It is developed by Meta (former Facebook) and it is open source since 2016.