본문 바로가기
Frontend/React

[Error] Property 'id' does not exist on type 'never' 타입스크립트 에러

by 민두이 2022. 12. 22.
728x90
반응형

 

에러 : Property 'id' does not exist on type 'never'.

 

해결 방법 : useState 뒤에 <any []> 붙여주기

    const [pokemons, setPokemons] = useState<any[]>([]);
728x90