You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API fits less with React 18's way of rendering. in 17 and below, user cared about holding the container, to re-render and unmount. With 18, the user just needs the root.
Synchronous API in 17, but 18 is async rendering.
APIs should probably be separated: helper for root/container creation, another for rendering async (promise resolves when mounted), and another for querying elements within a root.
The text was updated successfully, but these errors were encountered:
API fits less with React 18's way of rendering. in 17 and below, user cared about holding the container, to re-render and unmount. With 18, the user just needs the root.
Synchronous API in 17, but 18 is async rendering.
APIs should probably be separated: helper for root/container creation, another for rendering async (promise resolves when mounted), and another for querying elements within a root.
The text was updated successfully, but these errors were encountered: