feat(premeeting-screen) add virtual background functionality

This commit is contained in:
Tudor D. Pop 2021-04-07 12:29:54 +03:00 committed by GitHub
parent c687f41a89
commit 8b315846b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,8 @@
import React, { PureComponent } from 'react';
import { AudioSettingsButton, VideoSettingsButton } from '../../../../toolbox/components/web';
import { VideoBackgroundButton } from '../../../../virtual-background';
import { checkBlurSupport } from '../../../../virtual-background/functions';
import { Avatar } from '../../../avatar';
import { allowUrlSharing } from '../../functions';
@ -114,6 +116,7 @@ export default class PreMeetingScreen extends PureComponent<Props> {
<div className = 'toolbox-content-items'>
<AudioSettingsButton visible = { true } />
<VideoSettingsButton visible = { true } />
<VideoBackgroundButton visible = { checkBlurSupport() } />
</div>
</div>
</div>