kimsohee-around / React-Demo

리액트 수업 프로젝트입니다.
1 stars 1 forks source link

1011-리액트쿼리 #28

Open kimsohee-around opened 1 month ago

kimsohee-around commented 1 month ago

useQuery :React 애플리케이션에서 데이터 가져오기, 캐싱, 동기화 및 업데이트를 쉽게 처리할 수 있게 해주는 라이브러리인 React Query에서 제공하는 훅(hook)입니다. useQuery는 서버에서 데이터를 가져와 상태를 관리하고, 그 데이터의 로딩, 에러 상태 등을 처리하는 데 사용됩니다. : 설치 npm install react-query : bookables 목록을 요청하는 컴포넌트가 2군데. - 예약자원(BookablesView), 예약(BookingsPage) 에서 useFetch (fetch) 를 각각 요청해서 데이터를 받아옵니다.

kimsohee-around commented 1 month ago

useQuery

kimsohee-around commented 1 month ago

useQuery 리턴값

useQuery