Skip to content

Instantly share code, notes, and snippets.

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