asked
Applying TypeScript to React while learning while making web games
Precautions in Class State
Written on
·
210
0
안녕하세요 제로초님 강의 잘듣고 있습니다.
공유해주신 깃허브 소스코드 ResponseCheckClass.tsx 파일 47번 라인에 오타가 있습니다! 감사합니다.
수정 전
result: [...prevState.result, this.endTime!, this.startTime!],
수정 후
result: [...prevState.result, this.endTime! - this.startTime!],
Answer 1
감사합니다!