Skip to content

Instantly share code, notes, and snippets.

@imdongchen
Created October 2, 2018 14:53
Show Gist options
  • Save imdongchen/537a7e88c132a8daf00b7601331d4d66 to your computer and use it in GitHub Desktop.
Save imdongchen/537a7e88c132a8daf00b7601331d4d66 to your computer and use it in GitHub Desktop.
// functional component
function InnerComponent({ title, onClick }) {
console.log('I will always be called')
}
// or regular class component
class InnerComponent extends Component {
render() {
console.log('I will always re-render!')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment