Created
November 20, 2025 04:37
-
-
Save jaeyoung-kwon/3c30856bc99442dcbffca1d44dd067e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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