What is the purpose of the Provider component in React-Redux?
Beginner
Answer
The Provider component makes the Redux store available to all nested components. It uses React's context API to pass the store down the component tree without manual prop passing.