React Conference 2021 - State of their Art

React Conference 2021 - State of their Art
Feature Recap
Concurrent Features
- implement Concurrent renderer in React 18 with no (known) breaking changes
Suspense and Server Components
- granular component streaming from the server
Developer Notes
- new React DevTools team
- new Timeline Profiler for debugging
React 18 RC
Available for feedback:
npm install [email protected] [email protected]
Change entry to use createRoot
// before
const container = document.getElementById('root');
ReactDOM.render(<App />, container);
// after
const container = document.getElementById('root');
const root = ReactDOM.createRoot(container);
root.render(<App/>);
References
Image Credit
React Banner from Free Code Camp post
Quote Credit
Jonathan Swift Quotes. (n.d.). BrainyQuote.com. Retrieved December 21, 2021, from BrainyQuote.com