설명

사용법

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>

Parameter

Returned data