React Conference 2021 - State of their Art
Vision is the art of seeing what is invisible to others. - Jonathan Swift
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 react@rc react-dom@rc
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
This post and/or images used in it may have been created or enhanced using generative AI tools for clarity and organization. However, all ideas, technical work, solutions, integrations, and other aspects described here are entirely my own.