Skip to content

Instantly share code, notes, and snippets.

@protoEvangelion
Created August 9, 2017 21:55
Show Gist options
  • Save protoEvangelion/b424411bafc40b223dc89c33f9bd7360 to your computer and use it in GitHub Desktop.
Save protoEvangelion/b424411bafc40b223dc89c33f9bd7360 to your computer and use it in GitHub Desktop.
Rendering children elements
// Navigation Component
class Navigation extends Component {
render() {
return (
<div style={coolNavigationStyles}>
{this.props.children}
</div>
)
}
}
// Page where Navigation Component is used
...
<Navigation>
<ul>
<li>item</li>
<li>item</li>
<li>item</li>
</ul>
</Navigation>
....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment