FrontEnd/TypeScript1 [ TypeScript ] Props 타입 지정하기 interface SectionContainerProps { newsArr : NewsData[] ; } export default function SectionContainer({newsArr}:SectionContainerProps) { ... } export default function SectionContainer({newsArr}:{newsArr:NewsData[]}) { } export default function SectionContainer({newsArr}) { const newsData = newsArr as NewsData[] // 사용할 데이터 이름으로 변수 선언 ... } 2023. 10. 26. 이전 1 다음