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.

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