Skip to content

Instantly share code, notes, and snippets.

@dvtng
Last active June 13, 2017 05:52
Show Gist options
  • Save dvtng/47fac63b4e84146af1d89a11e3db6e7c to your computer and use it in GitHub Desktop.
Save dvtng/47fac63b4e84146af1d89a11e3db6e7c to your computer and use it in GitHub Desktop.
class Panel extends React.Component {
renderHeading() {
// ...
}
renderBody() {
// ...
}
render() {
return (
<div>
{this.renderHeading()}
{this.renderBody()}
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment