“Компонент класса TypeScript” Ответ

Компонент класса TypeScript

class Test extends Component<PropsType,StateType> {
  constructor(props : PropsType){
    	super(props)
  }
  
  render(){
   	console.log(this.props) 
    return (
     	<p>this.props.whatever</p> 
    )
  }
  
};
Kezza23

Установите в реагировании типа

interface IProps {
}

interface IState {
  playOrPause?: string;
}

class Player extends React.Component<IProps, IState> {
  // ------------------------------------------^
  constructor(props: IProps) {
    super(props);

    this.state = {
      playOrPause: 'Play'
    };
  }

  render() {
    return(
      <div>
        <button
          ref={playPause => this.playPause = playPause}
          title={this.state.playOrPause} // in this line I get an error
        >
          Play
        </button>
      </div>
    );
  }
}
Dead Duck

Ответы похожие на “Компонент класса TypeScript”

Вопросы похожие на “Компонент класса TypeScript”

Больше похожих ответов на “Компонент класса TypeScript” по TypeScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования