23 lines
592 B
TypeScript
23 lines
592 B
TypeScript
import { View, Text } from 'react-native';
|
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
|
|
export default function QuestionsScreen() {
|
|
const insets = useSafeAreaInsets();
|
|
return (
|
|
<View
|
|
style={{
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
backgroundColor: '#fff',
|
|
paddingTop: insets.top,
|
|
paddingBottom: insets.bottom,
|
|
paddingLeft: insets.left,
|
|
paddingRight: insets.right,
|
|
}}
|
|
>
|
|
<Text className="text-2xl font-bold text-gray-900">Questions</Text>
|
|
</View>
|
|
);
|
|
}
|