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