Skip to content

Instantly share code, notes, and snippets.

@mihir0x69
Last active March 22, 2017 07:10
Show Gist options
  • Save mihir0x69/28990eef7cbc995a07f744cd07299210 to your computer and use it in GitHub Desktop.
Save mihir0x69/28990eef7cbc995a07f744cd07299210 to your computer and use it in GitHub Desktop.
const Parent = (props) => (
<div>
{props.children}
</div>
)
const Child = (props) => (
<div>Child No. {props.number}</div>
)
const Wrapper = (props) => (
<div>
<Parent>
<Child number={1} />
<Child number={2} />
<Child number={3} />
<Child number={4} />
</Parent>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment