Files
jitsi-meet/react/features/remote-video-menu/components/native/KickButton.js

16 lines
491 B
JavaScript
Raw Normal View History

2018-12-19 19:40:17 +01:00
// @flow
import { connect } from 'react-redux';
import { translate } from '../../../base/i18n';
2019-01-05 17:49:21 +01:00
import AbstractKickButton from '../AbstractKickButton';
2018-12-19 19:40:17 +01:00
/**
2019-01-05 17:49:21 +01:00
* We don't need any further implementation for this on mobile, but we keep it
* here for clarity and consistency with web. Once web uses the
* {@code AbstractButton} base class, we can remove all these and just use
* the {@code AbstractKickButton} as {@KickButton}.
2018-12-19 19:40:17 +01:00
*/
2019-01-05 17:49:21 +01:00
export default translate(connect()(AbstractKickButton));