Skip to content
Snippets Groups Projects
Commit 0cb1fa7c authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Fix eslint error from prop types

parent 10586423
Branches
Tags
No related merge requests found
import React from 'react';
import PropTypes from 'prop-types';
import bindAll from 'lodash.bindall';
import RecordingStepComponent from '../components/record-modal/recording-step.jsx';
import AudioRecorder from '../lib/audio/audio-recorder.js';
......@@ -66,6 +67,10 @@ class RecordingStep extends React.Component {
}
}
RecordingStep.propTypes = RecordingStepComponent.propTypes;
RecordingStep.propTypes = {
onRecord: PropTypes.func.isRequired,
onStopRecording: PropTypes.func.isRequired,
recording: PropTypes.bool
};
export default RecordingStep;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment