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.

MuteButton.js 536B

1234567891011121314
  1. // @flow
  2. import { translate } from '../../../base/i18n';
  3. import { connect } from '../../../base/redux';
  4. import AbstractMuteButton, { _mapStateToProps } from '../AbstractMuteButton';
  5. /**
  6. * We don't need any further implementation for this on mobile, but we keep it
  7. * here for clarity and consistency with web. Once web uses the
  8. * {@code AbstractButton} base class, we can remove all these and just use
  9. * the {@code AbstractMuteButton} as {@MuteButton}.
  10. */
  11. export default translate(connect(_mapStateToProps)(AbstractMuteButton));