import React from 'react'; import classnames from 'classnames'; import styles from './styles.css'; export default function SidebarCategory({ label, items, subCategory, renderItem, }) { const Heading = subCategory ? 'h4' : 'h3'; return (
{label}
); }