Disclaimer: The opinions expressed herein are my own personal opinions and do not represent my employer’s view in any way.

React Conference 2021 - State of their Art

posted on December 21, 2021 | tags: [ react, conference, coder ]
Vision is the art of seeing what is invisible to others. - Jonathan Swift
React Logo banner image
Recap of the 6th React Conf, hosted online - React 18, concurrency, Suspense

React Conference 2021 - State of their Art

React Conf Website

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

React Conf Website

React Conf 2021 Recap

The Plan for React 18

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

freecodecamp Photo

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.