mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 09:09:29 +01:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import React from 'react'
|
|
import { WebView } from 'react-native-webview'
|
|
|
|
const WebViewScreen: React.FC<{
|
|
uri: string
|
|
}> = ({ uri }) => {
|
|
return <WebView source={{ uri }} />
|
|
}
|
|
|
|
export default WebViewScreen
|