Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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>));