Created
July 14, 2018 08:39
-
-
Save marensas/4f24b944a43b2589fa6c4408e6c21b08 to your computer and use it in GitHub Desktop.
Pure component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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