Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

functions.js 394B

123456789101112131415
  1. // @flow
  2. import { getParticipantById } from '../base/participants';
  3. /**
  4. * Selector for the participant currently displaying on the large video.
  5. *
  6. * @param {Object} state - The redux state.
  7. * @returns {Object}
  8. */
  9. export function getLargeVideoParticipant(state: Object) {
  10. const { participantId } = state['features/large-video'];
  11. return getParticipantById(state, participantId);
  12. }