import useFetch from '@/components/hooks/useFetch';
const {data, loading, error} = useFetch(url, option);
if (error) returl <div>Error...</div>
if (loading) returl <div>loading...</div>
if (data) returl <div>{data}</div>
url: API end pointoption : HTTP Request Option(header, body)data : 결과error: 에러 상태 표시loading: fetch 함수 진행 상태