Skip to content

Instantly share code, notes, and snippets.

@carlrip
Created August 24, 2019 15:08
Show Gist options
  • Save carlrip/f8dc817e04c25317383a6c2a1a608b77 to your computer and use it in GitHub Desktop.
Save carlrip/f8dc817e04c25317383a6c2a1a608b77 to your computer and use it in GitHub Desktop.
Render props interface
interface Props {
...
renderItem?: (item: string) => JSX.Element;
renderHeader?: () => JSX.Element;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment