Inside my parent component I have a child component that I need to render only once - at the very beginning. Because the data inside wont ever change until next page reload. What I try to do is somehow force React.memo to prevent rendering of this child component:
const ParentComponent = (props) => {
const ChildComponent = React.memo(({items}) => {
const { param1, param2, param3 } = items;
...
return (<Box>..</Box>);
}, (prev, nxt) => true); // Here I try to force no render
return (<Box>
<ChildComponent items={{
param1: 'some val..',
param2: 'some val..',
param3: 'some val..',
}} />
...
</Box>);
}
But child component still re-renders on each parent state change. Am I doing something wrong?
First of all, defining a component inside another component is a bad practice, because
So to make your life easier, extract the
ChildComponent
.