17 行
433 B
TypeScript
17 行
433 B
TypeScript
|
|
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<MainParamList, 'MainView'>;
|
||
|
|
|
||
|
|
export default function WebViewScreen(props: Props) {
|
||
|
|
return <View style={styles.container}></View>;
|
||
|
|
}
|
||
|
|
|
||
|
|
const styles = StyleSheet.create({
|
||
|
|
container: {
|
||
|
|
flex: 1,
|
||
|
|
},
|
||
|
|
});
|