TS1128: 선언 또는 문이 필요합니다(파일 끝). 저는 TypeScript/React 프로젝트(1년 동안 React를 작성하지 않은 것 등)를 진행하고 있으며 문제가 있습니다. 이 구성 요소를 작성할 때 찾은 일부 문서를 따라갔는데 이 파일의 끝에 TS1128(선언 또는 설명문이 예상됨) 오류가 발생하여 다음과 같은 이유를 알 수 없습니다. import * as React from 'react'; import Count from './CountDisplay'; interface State { count: number; } class Counter extends React.Component { state: State = {count: 0}; increment() { this.setState({ coun..