Created
October 27, 2018 22:09
-
-
Save deadlysyn/88aa344b5e3f176d6c6e88b2e4902d2b 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
function ProductCategoryRow(props) { | |
const category = 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