bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/permissions-overlay/component.jsx
2017-11-08 16:41:15 -02:00

18 lines
474 B
JavaScript

import React, { Component } from 'react';
import styles from './styles';
export default class PermissionsOverlay extends Component {
render() {
return (
<div className={styles.overlay}>
<div className={styles.hint}>
Allow BigBlueButton to use your Microphone
<small>
We need you to allow us to use your microphone in order to join you to the voice conference :)
</small>
</div>
</div>
)
}
}