import React, { FC } from 'react' import { Text, View } from 'react-native' import { ITicketGroupListHeaderProps } from './types' const TicketGroupListHeader: FC = ({ styles, text }) => ( {!!text && {text}} ) export default TicketGroupListHeader