Skip to content

Instantly share code, notes, and snippets.

@marensas
Created July 14, 2018 08:39
Show Gist options
  • Save marensas/4f24b944a43b2589fa6c4408e6c21b08 to your computer and use it in GitHub Desktop.
Save marensas/4f24b944a43b2589fa6c4408e6c21b08 to your computer and use it in GitHub Desktop.
Pure component
import React from 'react';
class Heading extends React.PureComponent {
render() {
return <h1>{this.props.title}</h1>;
}
}
export default Heading;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment