import React, { PropsWithChildren } from 'react' import styles from './index.module.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