/LikesComponent.js Secret
Created
February 3, 2021 17:05
Revisions
-
codebucks27 created this gist
Feb 3, 2021 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ import React, { Component } from "react"; import HOC from "./HOC"; class LikesCount extends Component { render() { return ( <div> {this.props.CountNumber} <br /> <button onClick={this.props.handleCLick}>Like👍🏻</button> </div> ); } } const EnhancedLikes = HOC(LikesCount, 5); export default EnhancedLikes;