Concept Flow - Creating context
Create Context with React.createContext()
Wrap Components with Context.Provider
Consume Context in Child with useContext()
Child uses shared value from Context
Update Context value triggers re-render of consumers
This flow shows how to create a context, provide a value, and consume it in child components, enabling shared state.