Skip to content

Instantly share code, notes, and snippets.

@vzaidman
Last active September 19, 2020 07:48
Show Gist options
  • Save vzaidman/aef029f9814b2983acdf58c31d8ad05b to your computer and use it in GitHub Desktop.
Save vzaidman/aef029f9814b2983acdf58c31d8ad05b to your computer and use it in GitHub Desktop.
When App Re-renders, Main Also Re-renders.
const Main = ({userName}) => {
const content = heavyCalculation({userName});
return (
<div className="Main">
{content}
</div>
);
}
export default function App({userName}) {
return (
<div className="App">
<Header />
<Main userName={userName} />
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment