mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-02-16 10:50:19 +00:00
8 lines
280 B
TypeScript
8 lines
280 B
TypeScript
import { connect } from 'react-redux';
|
|
|
|
import { translate } from '../../../base/i18n/functions';
|
|
import AbstractVideoMuteButton, { IProps, mapStateToProps } from '../AbstractVideoMuteButton';
|
|
|
|
|
|
export default translate(connect(mapStateToProps)(AbstractVideoMuteButton<IProps>));
|