You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VideoMuteButton.tsx 280B

1234567
  1. import { connect } from 'react-redux';
  2. import { translate } from '../../../base/i18n/functions';
  3. import AbstractVideoMuteButton, { IProps, mapStateToProps } from '../AbstractVideoMuteButton';
  4. export default translate(connect(mapStateToProps)(AbstractVideoMuteButton<IProps>));