Remove excess IState

pull/21833/head
Travis Ralston 2021-04-28 09:28:46 -06:00
parent 8fca32d651
commit d4acd0e41c
1 changed files with 1 additions and 5 deletions

View File

@ -29,18 +29,14 @@ interface IProps {
playbackPhase: PlaybackState;
}
interface IState {
}
/**
* Displays a play/pause button (activating the play/pause function of the recorder)
* to be displayed in reference to a recording.
*/
@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) {
super(props);
this.state = {};
}
private onClick = async () => {