Folo/apps/mobile/native/example/App.tsx

13 lines
291 B
TypeScript

import { SharedWebView } from "follow-native"
import { ScrollView, View } from "react-native"
export default function App() {
return (
<ScrollView>
<SharedWebView url="https://innei.in" />
<View style={{ height: 1000, backgroundColor: "red" }} />
</ScrollView>
)
}