Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
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>));
|