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