Skip to content

Instantly share code, notes, and snippets.

@jaeyoung-kwon
Created November 20, 2025 04:37
Show Gist options
  • Select an option

  • Save jaeyoung-kwon/3c30856bc99442dcbffca1d44dd067e8 to your computer and use it in GitHub Desktop.

Select an option

Save jaeyoung-kwon/3c30856bc99442dcbffca1d44dd067e8 to your computer and use it in GitHub Desktop.
function App({ name }: { name: string }) {
console.log('Rendering...'); // 사이드 이펙트
return <div>{expensiveCalculation(name)}</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment