Created
October 27, 2018 22:06
-
-
Save deadlysyn/ba5f6a4207b9e9d52c96f59a7f0dea13 to your computer and use it in GitHub Desktop.
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
class ProductCategoryRow extends React.Component { | |
render() { | |
const category = this.props.category; | |
return ( | |
<tr> | |
<th colSpan="2"> | |
{category} | |
</th> | |
</tr> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment