/* @flow */ import React from 'react'; import { useTranslation } from 'react-i18next'; import { Text, View } from 'react-native'; import style from './styles'; /** * React component for labeling speaker stats column items. * * @returns {void} */ const SpeakerStatsLabels = () => { const { t } = useTranslation(); return ( { t('speakerStats.name') } { t('speakerStats.speakerTime') } ); }; export default SpeakerStatsLabels;