// @flow import React from 'react'; import { useTranslation } from 'react-i18next'; import { Text, View } from 'react-native'; import { Button } from 'react-native-paper'; import { Icon, IconInviteMore } from '../../../base/icons'; import { MeetingParticipantItem } from './MeetingParticipantItem'; import { participants } from './participants'; import styles from './styles'; export const MeetingParticipantList = () => { const { t } = useTranslation(); return ( {t('participantsPane.headings.participantsList', { count: participants.length })}