반응형
index.js에서 딱 세줄이면 된다.
cost rootEl = document.getElementById('root');
const root = ReactDOM.createRoot(rootEl);
root.render(<App/>); // 마운트
root.unmount(); // 언마운트
비동기 모드를 사용하는 이유?
렌더링이 인터랙션을 막지 않도록 잡 스케줄링을 할 수 있게 렌더링 작업을 쪼개 수행하기 위함
반응형
'FrontEnd' 카테고리의 다른 글
Render as you fetch : 렌더링과 데이터 페칭을 동시에 (0) | 2021.12.24 |
---|---|
Simple Data-Fetching with React Suspense (0) | 2021.12.24 |
[WIP] 리액트 공식문서 읽기 : Thinking in React with Hooks (0) | 2021.12.23 |
React Suspense : 비동기 렌더링 내용은 아직 "미정" 상태에요 (0) | 2021.12.23 |
8. 커스텀 훅 테스트 (0) | 2021.12.23 |