import React from 'react' import './index.scss' interface Props { groupName: string name: string selected: boolean children: string onClick: (event: React.ChangeEvent) => void } const Segment: React.FC = (props: Props) => { return (
) } export default Segment