Skip to content

Instantly share code, notes, and snippets.

@dglowinski
Created July 14, 2017 09:11
Show Gist options
  • Save dglowinski/acdb8f178175e60df26062feb26bbca4 to your computer and use it in GitHub Desktop.
Save dglowinski/acdb8f178175e60df26062feb26bbca4 to your computer and use it in GitHub Desktop.
React - multiple children prop
function SplitPane(props) {
return (
<div className="SplitPane">
<div className="SplitPane-left">
{props.left}
</div>
<div className="SplitPane-right">
{props.right}
</div>
</div>
);
}
function App() {
return (
<SplitPane
left={
<Contacts />
}
right={
<Chat />
} />
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment