인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

roseonghwan1342's profile image
roseonghwan1342

asked

Node and React series that you can learn by following - Creating a YouTube site

Boiler Plate Lecture

이전강의와 비교

Written on

·

214

0

이전 강의에서 client의 App.js에서는 BrowserRouter을 사용하셨는데 깃에 업로드 된건 Suspense가 있고 BrowserRouter가 빠져있는데 왜 그런지 알려주실 수 있을까요?

reactnodejsreduxmongodb

Answer 1

1

johnahn님의 프로필 이미지
johnahn
Instructor

안녕하세요 BrowserRouter는 꼭 필요합니다 index.js에 가보시면 BrowserRouter가 있을 겁니다. 

Suspense는 데이터를 가져오는 동안 그 시간 동안 다른 걸 보여줄 수 있습니다. 아래 코드를 보면 프로필 페이지에 필요한 데이터를 가져오는 동안 Spinner 컴포넌트를 보여줄 수 있습니다. 감사합니다.



// Show a spinner while the profile is loading
<Suspense fallback={<Spinner />}>
  <ProfilePage />
</Suspense>
roseonghwan1342's profile image
roseonghwan1342

asked

Ask a question