import { FormCheck, FormCheckProps, FormLabel } from 'react-bootstrap' type OLFormSwitchProps = FormCheckProps & { inputRef?: React.MutableRefObject } function OLFormSwitch(props: OLFormSwitchProps) { const { inputRef, label, id, ...rest } = props return ( <> {label} ) } export default OLFormSwitch