Created
November 20, 2025 05:27
-
-
Save jaeyoung-kwon/920ac617d0f79ebddc9eb2c01ed2d723 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
| const B = ({ name }: Props) => { | |
| if (name === '권씨') { | |
| return <div>{expensiveCalculation(name)}</div>; | |
| } else if (name === '오씨') { | |
| return <div>{expensiveCalculation(name)}</div>; | |
| } else { | |
| return <div>{expensiveCalculation(name)}</div>; | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment