If you absolutely need to run some code before a component renders, then the solution is to avoid rendering that component at all, until you’re ready.
That means conditionally rendering it in the parent, which would look something like this. More detail in the comments:
functionChild({ items }){
// Problem:
// This will error if `items` is null/undefined
return(
<>
{items.map(item =>(
<li key={item.id}>{item.name}</li>
))}
</>
);
}
functionParent(){
// Uninitialized state will cause Child to error out
Comments 0