Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

MeetingParticipantItem.js 304B

12345678910111213141516171819
  1. // @flow
  2. import React from 'react';
  3. import ParticipantItem from './ParticipantItem';
  4. type Props = {
  5. /**
  6. * Participant reference
  7. */
  8. participant: Object
  9. };
  10. export const MeetingParticipantItem = ({ participant: p }: Props) => (
  11. <ParticipantItem
  12. participant = { p } />
  13. );