Created
November 20, 2025 04:35
-
-
Save jaeyoung-kwon/8841fba751d863a4d16b00a461c0ecf2 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({ user }: { user: { name: string } }) { | |
| user.name = user.name.toUpperCase(); // mutation | |
| return <div>{user.name}</div>; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment