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
Dest should accept a render callback which is always called when the Dest is re-rendered, or there's an update at a Source. The main use cases here are transitions, and wrapping the node in another element.
<Dest/>// same as...<Dest>{(nodeOrNull)=>nodeOrNull}</Dest>
For transitions, it would be compatible with react-transition-group, without us doing anything special.
The general wrapper case allows conditionally rendering a wrapper, based on the node existing or not.
Dest should accept a render callback which is always called when the
Dest
is re-rendered, or there's an update at aSource
. The main use cases here are transitions, and wrapping the node in another element.For transitions, it would be compatible with react-transition-group, without us doing anything special.
The general wrapper case allows conditionally rendering a wrapper, based on the node existing or not.
The text was updated successfully, but these errors were encountered: