|
@@ -4,14 +4,13 @@ import React from 'react';
|
4
|
4
|
|
5
|
5
|
import { translate } from '../../../base/i18n';
|
6
|
6
|
import { IconKick } from '../../../base/icons';
|
|
7
|
+import { connect } from '../../../base/redux';
|
7
|
8
|
import AbstractKickButton, {
|
8
|
9
|
type Props
|
9
|
10
|
} from '../AbstractKickButton';
|
10
|
11
|
|
11
|
12
|
import RemoteVideoMenuButton from './RemoteVideoMenuButton';
|
12
|
13
|
|
13
|
|
-declare var interfaceConfig: Object;
|
14
|
|
-
|
15
|
14
|
/**
|
16
|
15
|
* Implements a React {@link Component} which displays a button for kicking out
|
17
|
16
|
* a participant from the conference.
|
|
@@ -56,4 +55,4 @@ class KickButton extends AbstractKickButton {
|
56
|
55
|
|
57
|
56
|
_handleClick: () => void
|
58
|
57
|
}
|
59
|
|
-export default translate(KickButton);
|
|
58
|
+export default translate(connect()(KickButton));
|