import {Text, View} from 'react-native'; import React from 'react'; import styles from '../styles'; type DescriptionProps = { text: string; children: React.ReactNode; }; const Description = ({text, children}: DescriptionProps) => ( {text} {children} ); export default Description;