Changelog
14.18.0
Improved anchor
and added Anchor
TSX component. (Contrib by https://github.com/keeema)
Changelog
14.16.0
Changed useEffect
body to be executed inside update frame. Before this change it was run asynchronously after frame using b.asap
. This converts useEffect
into another lifecycle method after postUpdateDom
. Difference is that postUpdateDom
(useLayoutEffect
) can trigger another synchronous Render
, but useEffect
is executed always only once as last. Calling deferSyncUpdate
from useEffect
body does not have any effect.