Skip to content

Commit

Permalink
240114 TIL : 0114
Browse files Browse the repository at this point in the history
  • Loading branch information
leesoo7595 committed Jan 14, 2024
1 parent 4bc3e01 commit 35233dc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions _posts/TIL/2024-01-14-TIL_0114.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
layout: post
title: "[TIL] React Query로 인피니트스크롤링 구현방법 짧은요약"
date: 2024-01-14
tags: [TIL]
categories:
- TIL
comments: true
---

# react-query

## useInfiniteQuery

useInfiniteQuery 훅을 사용하여 다음 데이터들을 불러올 수가 있다.

참고: [useInfiniteQuery](https://tanstack.com/query/v4/docs/react/reference/useInfiniteQuery)

# react-intersection-observer

## useInView

언제 업데이트 될 것인지를 정의해주는 훅스

어느 시점에서 useInView로 만든 컴포넌트가 보이면 그 순간 업데이트가 되도록 useEffect로 정의할 수 있다.

참고: [react-intersection-observer](https://www.npmjs.com/package/react-intersection-observer)

0 comments on commit 35233dc

Please sign in to comment.