「内容」
[react-native],[Expo]を使ってwebサイトをデバイスに表示させたいのですが、エラーが出てしまい出来ません!
原因がわかる方がいたらお願いします!
「エラー文」
Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined.
(Device)
「エラーコード」
javascript,
1import React, { Component } from 'react'; 2import { WebView } from 'react-native'; 3 4 5 6export default class App extends Component<{}> { 7 8 render() { 9 return ( 10 11 <WebView 12 source={{uri: 'https://github.com/facebook/react-native'}} 13 style={{marginTop: 20}} 14 scalesPageToFit={true} 15 /> 16 17 ); 18 } 19}
あなたの回答
tips
プレビュー