Inflearn Community Q&A
오타로 인한 오류 제보 입니다.
Written on
·
309
2
9분:15초쯤 commented on다음에 작성코드
[변경전]
<span>commented on</span>
<Link
href={`/u/${comment.post?.url}`}
className="cursor-pointer font-semibold hover:underline"
>
{comment.post?.title}
</Link>[변경후]
<span>commented on</span>
<Link
href={`${comment.post?.url}`}
className="cursor-pointer font-semibold hover:underline"
>
{comment.post?.title}
</Link>reactnode.jspostgresqldockertypescript클론코딩next.js
Quiz
useSWRInfinite는 주로 어떤 UI 패턴 구현에 사용되나요?
단일 데이터 불러오기
무한 스크롤 또는 페이지네이션
데이터 캐싱 관리
사용자 입력 유효성 검사
Answer 2
1
1






항상 좋은 강의 감사합니다 :)