14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
import { ScrollView, View } from "react-native"
|
|
|
|
import { SharedWebView } from "@/src/components/native/webview"
|
|
|
|
export default function App() {
|
|
return (
|
|
<ScrollView>
|
|
<SharedWebView url="https://innei.in" />
|
|
|
|
<View style={{ height: 1000, backgroundColor: "red" }} />
|
|
</ScrollView>
|
|
)
|
|
}
|