Argument of type '() => Promise<void>' is not assignable to parameter of type 'SetStateAction<undefined>'.

버들·2023년 2월 16일
0

⚽Trouble Shooting

목록 보기
15/16
const result = async () => {
    const { data } = await axios.get<isFood>("http://localhost:9000/stores");
    console.log(data);
    setData(result);
  };

Argument of type '() => Promise' is not assignable to parameter of type 'SetStateAction'.
Type 'Promise' is not assignable to type 'undefined'.ts(2345)

profile
태어난 김에 많은 경험을 하려고 아등바등 애쓰는 프론트엔드 개발자

0개의 댓글