Problem Statement
Explain the concept of context in React.
Explanation
React Context allows data to be shared globally across components without passing props manually at every level. It is useful for themes, authentication, and global state.
Code Solution
SolutionRead Only
const ThemeContext = React.createContext('light');
<ThemeContext.Provider value='dark'><App/></ThemeContext.Provider>;