Remove excess IState

This commit is contained in:
Travis Ralston 2021-04-28 09:28:46 -06:00
parent 8fca32d651
commit d4acd0e41c

View file

@ -29,18 +29,14 @@ interface IProps {
playbackPhase: PlaybackState; playbackPhase: PlaybackState;
} }
interface IState {
}
/** /**
* Displays a play/pause button (activating the play/pause function of the recorder) * Displays a play/pause button (activating the play/pause function of the recorder)
* to be displayed in reference to a recording. * to be displayed in reference to a recording.
*/ */
@replaceableComponent("views.voice_messages.PlayPauseButton") @replaceableComponent("views.voice_messages.PlayPauseButton")
export default class PlayPauseButton extends React.PureComponent<IProps, IState> { export default class PlayPauseButton extends React.PureComponent<IProps> {
public constructor(props) { public constructor(props) {
super(props); super(props);
this.state = {};
} }
private onClick = async () => { private onClick = async () => {