您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

KickButton.js 491B

123456789101112131415
  1. // @flow
  2. import { connect } from 'react-redux';
  3. import { translate } from '../../../base/i18n';
  4. import AbstractKickButton from '../AbstractKickButton';
  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 AbstractKickButton} as {@KickButton}.
  10. */
  11. export default translate(connect()(AbstractKickButton));