You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SpeakerStatsList.tsx 487B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import { View } from 'react-native';
  3. import abstractSpeakerStatsList from '../AbstractSpeakerStatsList';
  4. import SpeakerStatsItem from './SpeakerStatsItem';
  5. /**
  6. * Component that renders the list of speaker stats.
  7. *
  8. * @returns {React$Element<any>}
  9. */
  10. const SpeakerStatsList = () => {
  11. const items = abstractSpeakerStatsList(SpeakerStatsItem);
  12. return (
  13. <View>
  14. {items}
  15. </View>
  16. );
  17. };
  18. export default SpeakerStatsList;