import React from 'react'; import { Text } from 'react-native'; import { useSelector } from 'react-redux'; import { getParticipantCountForDisplay } from '../../../base/participants/functions'; import styles from './styles'; const ParticipantsCounter = () => { const participantsCount = useSelector(getParticipantCountForDisplay); return {participantsCount}; }; export default ParticipantsCounter;