Skip to content

Instantly share code, notes, and snippets.

@deadlysyn
Created October 27, 2018 22:09
Show Gist options
  • Save deadlysyn/88aa344b5e3f176d6c6e88b2e4902d2b to your computer and use it in GitHub Desktop.
Save deadlysyn/88aa344b5e3f176d6c6e88b2e4902d2b to your computer and use it in GitHub Desktop.
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