;我如何让提供程序使用 redux React 18 React Native 可以请解释一下 React Native 0.69

问题描述 投票:0回答:1

AppRegistry.registerComponent(appName, () => App);

/**
 * @format
 */

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';

AppRegistry.registerComponent(appName, () => App);

我不知道如何拉入它?

reactjs react-native
1个回答
0
投票

在 App.js 中

<Provider store={store}>
 ...Your App
</Provider>
© www.soinside.com 2019 - 2024. All rights reserved.