下記のコードで次のようなワーニングが発生しました
ドキュメント等を読んでもお手上げ状態です.
解決方法をご存知の方はよろしくお願いします.
js
1import React, { useState } from "react"; 2import useFetch from "use-http"; 3 const [state, setState] = useState<Image[]>([]); 4 const { get, response, loading, error } = useFetch( 5 "https://hoge.hogecom" 6 ); 7 8 React.useEffect(() => { 9 const f = async () => { 10 const images = await get("/phots?limit=10"); 11 const { data, ok } = images; 12 if (ok) { 13 setState(data.images); 14 } 15 }; 16 f(); 17 }, []);
Line 36:6: React Hook React.useEffect has a missing dependency: 'get'. Either include it or remove the dependency array react-hooks/exhaustive-deps Search for the keywords to learn more about each warning. To ignore, add // eslint-disable-next-line to the line before.
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。