import React from 'react'; import { connect } from 'react-redux'; import ConfirmDialog from '../../../../base/dialog/components/native/ConfirmDialog'; import { translate } from '../../../../base/i18n/functions'; import AbstractStopRecordingDialog, { IProps, _mapStateToProps } from '../AbstractStopRecordingDialog'; /** * React Component for getting confirmation to stop a file recording session in * progress. * * @augments Component */ class StopRecordingDialog extends AbstractStopRecordingDialog { /** * Implements {@code Component#render}. * * @inheritdoc */ render() { return ( ); } } export default translate(connect(_mapStateToProps)(StopRecordingDialog));