import React, { FC, ReactNode } from 'react'; import { SafeAreaView, StyleProp, ViewStyle } from 'react-native'; import { styles } from './styles'; type Props = { children: ReactNode; style?: StyleProp; }; export const PageWrapper: FC = ({ children, style }) => { return {children}; };