|
@@ -19,6 +19,11 @@ type Props = {
|
19
|
19
|
*/
|
20
|
20
|
footer?: React$Node,
|
21
|
21
|
|
|
22
|
+ /**
|
|
23
|
+ * The name of the participant.
|
|
24
|
+ */
|
|
25
|
+ name?: string,
|
|
26
|
+
|
22
|
27
|
/**
|
23
|
28
|
* Title of the screen.
|
24
|
29
|
*/
|
|
@@ -46,13 +51,14 @@ export default class PreMeetingScreen extends PureComponent<Props> {
|
46
|
51
|
* @inheritdoc
|
47
|
52
|
*/
|
48
|
53
|
render() {
|
49
|
|
- const { title, videoMuted, videoTrack } = this.props;
|
|
54
|
+ const { name, title, videoMuted, videoTrack } = this.props;
|
50
|
55
|
|
51
|
56
|
return (
|
52
|
57
|
<div
|
53
|
58
|
className = 'premeeting-screen'
|
54
|
59
|
id = 'lobby-screen'>
|
55
|
60
|
<Preview
|
|
61
|
+ name = { name }
|
56
|
62
|
videoMuted = { videoMuted }
|
57
|
63
|
videoTrack = { videoTrack } />
|
58
|
64
|
<div className = 'content'>
|