React + TypeScript 오류:이 호출과 일치하는 오버로드가 없습니다. 다음과 같은 배열을 통해 매핑할 때 큰 오류가 발생합니다. // Home.tsx render() { const { inputs, outputs, expectedOutputs } = this.state; return ( {inputs.map((input, i) => { return ( ); })} ); // TestRow.tsx interface TestRowProps { xml: string; desc: string; output: string; expectedOutput: string; rowNumber: number; } class TestRow extends Component { textArea: any; 오류: 이 통..