webview 설치
[react-native-webview]
yarn add react-native-webview
webView import
import WebView from "react-native-webview";
uri 다음에 접속할 링크 입력
<WebView source={{uri: 'https://codebootcamp.co.kr/home'}}/>
App.tsx
에서 할 경우
import { WebView } from 'react-native-webview';
const App: ()=> Node =()=> {
return <WebView source={{uri: 'https://codecamp-deploy.com'}} />;
};
export default App;