added licenses and webview for them

added link to github page
This commit is contained in:
austinried
2021-08-26 12:47:56 +09:00
parent b8f04e5426
commit a3fda31743
11 changed files with 24857 additions and 16 deletions

View File

@@ -0,0 +1,10 @@
import React from 'react'
import { WebView } from 'react-native-webview'
const WebViewScreen: React.FC<{
uri: string
}> = ({ uri }) => {
return <WebView source={{ uri }} />
}
export default WebViewScreen