export default function useFetch(path) { const [array, setArray] = useState([]); useEffect(() => { axios.get(`${path}`) .then(res ...
確定! 回上一頁