import React, { type ReactNode } from 'react'; import { type StyleProp, View, type ViewStyle } from 'react-native'; import { globalStyles } from '../styles/globalStyles'; interface Props { children: ReactNode; styles?: StyleProp; flex?: number; } const Section = (props: Props) => { const { children, styles, flex } = props; return ( {children} ); }; export default Section;