Skip to content

Instantly share code, notes, and snippets.

@jrf0110
Last active November 24, 2015 18:19
Show Gist options
  • Save jrf0110/7d10fbc72abe8a9bf08f to your computer and use it in GitHub Desktop.
Save jrf0110/7d10fbc72abe8a9bf08f to your computer and use it in GitHub Desktop.
export default class SomeComponent {
static SubComponent( props ){
return (
<span className="some-component-sub">{props.value}</span>
);
}
render(){
return (
<div className="some-component">
<SomeComponent.SubComponent value={123} />
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment