Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
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.
 
 
 
 
 
 
jitsi-meet/react/features/video-quality/components/VideoQualityDialog.web.js

31 lines
789 B

import React, { Component } from 'react';
import { Dialog } from '../../base/dialog';
import VideoQualitySlider from './VideoQualitySlider';
/**
* Implements a React {@link Component} which displays the component
* {@code VideoQualitySlider} in a dialog.
*
* @augments Component
*/
export default class VideoQualityDialog extends Component {
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
render() {
return (
<Dialog
hideCancelButton = { true }
submitDisabled = { true }
titleKey = 'videoStatus.performanceSettings'
width = 'small'>
<VideoQualitySlider />
</Dialog>
);
}
}