const ProductCategoryRow = ({ category = 'javascript', children }) =>
  <tr>
    <th colSpan="2">
      {category}
    </th>
    {children}
  </tr>