Created
December 24, 2020 00:29
-
-
Save kwoncharles/13170da9b1d34114ceac23c7cd382381 to your computer and use it in GitHub Desktop.
Render Props short example
This file contains 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
// 일반 컴포넌트 | |
<Button> | |
눌러주세요 | |
</Button> | |
// Render Props 컴포넌트 | |
<Button> | |
{() => <>눌러주세요</>} | |
</Button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment