您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

VideoQualityDialog.web.js 776B

12345678910111213141516171819202122232425262728293031
  1. import React, { Component } from 'react';
  2. import { Dialog } from '../../base/dialog';
  3. import VideoQualitySlider from './VideoQualitySlider';
  4. /**
  5. * Implements a React {@link Component} which displays the component
  6. * {@code VideoQualitySlider} in a dialog.
  7. *
  8. * @extends Component
  9. */
  10. export default class VideoQualityDialog extends Component {
  11. /**
  12. * Implements React's {@link Component#render()}.
  13. *
  14. * @inheritdoc
  15. * @returns {ReactElement}
  16. */
  17. render() {
  18. return (
  19. <Dialog
  20. hideCancelButton = { true }
  21. okKey = 'dialog.done'
  22. titleKey = 'videoStatus.callQuality'
  23. width = 'small'>
  24. <VideoQualitySlider />
  25. </Dialog>
  26. );
  27. }
  28. }