import React from 'react'; import { StyleSheet, View } from 'react-native'; import { StackScreenProps } from '@react-navigation/stack'; import { MainParamList } from '@app/routes/MainParamList'; type Props = StackScreenProps; export default function WebViewScreen(props: Props) { return ; } const styles = StyleSheet.create({ container: { flex: 1, }, });