본문 바로가기
javascript/TypeScript

[error] Property does not exist on type 'never'

by 바나냥 2020. 9. 21.

Error

useState hook을 사용하여 배열을 정의할 때 타입스크립트 에러가 발생함.

 

 

해결

 

useState 뒤에 <any[]> 를 명시해준다.

 

const [arr, setArr] = useState<any[]>([])

 

댓글