import { ColorsStatus } from "@/constants/ColorsStatus"; import Styles from "@/constants/Styles"; import { Pressable, Text, View } from "react-native"; type Props = { content: 'carousel' | 'page'; children: React.ReactNode; title: string headerColor: 'primary' | 'warning' onPress?: () => void contentPosition?: 'top' | 'center' }; export default function PaperGridContent({ content, children, title, headerColor, onPress, contentPosition }: Props) { return ( {title} {children} ) }