React ts type정의

gusdas·2022년 7월 12일
1

에러노트

목록 보기
17/22

React에 ts적용시 여러 타입을 어떻게 써야 정리 해보려고 한다.

children type

interface Props {
    children: React.ReactNode
}

button onClick type

interface Props {
    onClick: React.MouseEventHandler<HTMLButtonElement>
}

onClick type

interface Props {
    onClick: React.MouseEventHandler<HTMLElement>
}
profile
웹개발자가 되자

0개의 댓글