1234567891011121314151617181920 |
- // @flow
-
- import { translate } from '../../../base/i18n';
- import { isLocalParticipantModerator } from '../../../base/participants';
- import { connect } from '../../../base/redux';
- import AbstractKickButton from '../AbstractKickButton';
-
- /**
- * Maps part of the Redux state to the props of this component.
- *
- * @param {Object} state - The Redux state.
- * @returns {Props}
- */
- function _mapStateToProps(state) {
- return {
- visible: isLocalParticipantModerator(state)
- };
- }
-
- export default translate(connect(_mapStateToProps)(AbstractKickButton));
|