영원히 흘러가는 강
Props + 배열 안에 객체 본문
728x90
interface 객체값{
name:string;
id:number;
}
interface Props{
y: 객체값[];
}
const XXX=({불러오는값}:Props)=>{
...
}
Props 로 전달받는 "불러오는값" 의 내부 객체를 "객체값" 으로 타입스크립트 인터페이스로 정의
배열 안 객체이므로 "객체값"을 배열선언
728x90
'TypeScript' 카테고리의 다른 글
이펙티브 타입스크립트 (0) | 2022.02.09 |
---|---|
object value 출력 (0) | 2022.01.03 |
TypeScript + React (0) | 2021.11.10 |
TypeScript 기본 타입 (0) | 2021.06.14 |
TypeScript (0) | 2021.06.14 |
Comments