After creating and providing Context in React, the next step is to consume it inside components.
React gives us an easy way to do this using the useContext Hook — it allows functional components to directly access context data without needing to pass props manually.
Think of it like this:
The Provider broadcasts data, and the useContext Hook tunes in to that data.