TypeScript에서 반응 상태 사용 TypeScript는 처음입니다.표시에 문제가 있습니다.this.state.something렌더 메서드 내부 또는 함수 내부 변수에 할당하는 방법. 가장 중요한 코드를 살펴봅니다. interface State { playOrPause?: string; } class Player extends React.Component { constructor() { super(); this.state = { playOrPause: 'Play' }; } render() { return( this.playPause = playPause} title={this.state.playOrPause} // in this line I get an error > Play ); } } 에러는 다음..