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