Skip to content

Instantly share code, notes, and snippets.

@kazagkazag
Last active July 7, 2016 09:48
Show Gist options
  • Save kazagkazag/6f18e060d0a44828722c894b1235f97f to your computer and use it in GitHub Desktop.
Save kazagkazag/6f18e060d0a44828722c894b1235f97f to your computer and use it in GitHub Desktop.
// MyButton.jsx
export default class MyButton extends Component {
render() {
return <button>Click me!</button>
}
}
// MyComponent.jsx
// import MyButton from "MyButton"
export class MyComponent extends Component {
render() {
return (
<div className="my-div">
My div content
<MyButton />
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment