提供商

要轻松地将 Redux 存储链接到 React 组件,你可以使用其他库: react-redux

首先,你需要将应用程序包装在 Provider 中,Provider 是一个传递你的商店以供子组件使用的组件:

import { Provider } from 'react-redux';

/// ... store = createStore()

const App = () => (
  <Provider store={store}>
    <MyComponent>
  </Provider>
)