我的简单反应代码;
import React from "react";
import { Text, StyleSheet,View } from "react-native";
import { WebView } from 'react-native';
const App = () => {
return(
<WebView
source={{
uri: 'https://www.google.com/'
}}
style={{ marginTop: 20 }}
/>
);
}
export default App;
错误;
“元素类型无效:预期为字符串(对于内置组件)或类/函数(对于复合组件),但得到:未定义。 (设备)“