Skip to content

Instantly share code, notes, and snippets.

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