Remove excess IState
This commit is contained in:
parent
8fca32d651
commit
d4acd0e41c
1 changed files with 1 additions and 5 deletions
|
@ -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 () => {
|
||||||
|
|
Loading…
Reference in a new issue