我正在将两个值cell
和cell_country_code
传递到App.js中的组件以进行测试。这是代码:
const testVerif = (props) => (<Verif1 {...props} cell='1234567890' cell_country_code='1' />);
//create the navigator
const navigator = createStackNavigator(
{
Signup: Signup,
Verif: Verif,
Verif1: {
screen: testVerif,
},
Event: Event,
Chat: {
screen: ChatWithSocket,
}
}, {
initialRouteName: Verif1
}
);
但是上面的代码抛出错误:
我尝试了很多组合,但没有一个奏效。代码中的问题在哪里?