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.

ParticipantView.web.js 615B

12345678910111213141516171819202122
  1. import { Component } from 'react';
  2. /**
  3. * Implements a React Component which depicts a specific participant's avatar
  4. * and video.
  5. */
  6. export default class ParticipantView extends Component {
  7. /**
  8. * Implements React's {@link Component#render()}.
  9. *
  10. * @inheritdoc
  11. * @returns {ReactElement|null}
  12. */
  13. render() {
  14. // FIXME ParticipantView is supposed to be platform-independent.
  15. // Temporarily though, ParticipantView is not in use on Web but has to
  16. // exist in order to split App, Conference, and WelcomePage out of
  17. // index.html.
  18. return null;
  19. }
  20. }