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.

VideoQualityDialog.web.js 773B

123456789101112131415161718192021222324252627282930
  1. import React, { Component } from 'react';
  2. import Dialog from '../../base/ui/components/web/Dialog';
  3. import VideoQualitySlider from './VideoQualitySlider.web';
  4. /**
  5. * Implements a React {@link Component} which displays the component
  6. * {@code VideoQualitySlider} in a dialog.
  7. *
  8. * @augments 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. cancel = {{ hidden: true }}
  21. ok = {{ hidden: true }}
  22. titleKey = 'videoStatus.performanceSettings'>
  23. <VideoQualitySlider />
  24. </Dialog>
  25. );
  26. }
  27. }