useEffect (() => { const getData = async () => { const response = await fetch(todosEndpoint); const data = await response.json(); setTodos(data); }; ...
確定! 回上一頁