Closed marlonicus closed 1 year ago
If data passed into a <With /> component goes from a non-null value to a null value, then the child can be erroneously called with the null value.
data
<With />
By preventing propagation using NO_VALUE we can ensure that the children will never be called with a null value.
NO_VALUE
Problem
If
data
passed into a<With />
component goes from a non-null value to a null value, then the child can be erroneously called with the null value.Solution
By preventing propagation using
NO_VALUE
we can ensure that the children will never be called with a null value.