import React from 'react'; import cx from 'classnames'; import { LeftSidebarItem } from './SidebarItem'; export const LeftSidebarComment = ({ toggleComments, appVersionsId }) => { const [isActive, toggleActive] = React.useState(false); return ( { toggleActive(!isActive); toggleComments(); }} /> ); };