使用 React native web 时如何将 props 传递给 react-native?

how to pass props to react-native when using React native web?

当我使用 react-native-web 时,我的 App 入口如下所示

 AppRegistry.registerComponent('SnsAdvertiser', () => Advertiser)                                                                                                                                                                            
 AppRegistry.runApplication('SnsAdvertiser', { rootTag: document.getElementById('mainApp') });

我想知道在这种情况下如何将道具传递给根组件 Advertiser 在这种情况下是在 Web 环境中。

runApplication 在第二个参数中接受另一个参数 initialProps 以及 rootTag

 AppRegistry.runApplication('SnsAdvertiser', {
     rootTag: document.getElementById('mainApp'),
     initialProps: {...}
 });