import ConfigType from '../../../common/types/configType' type CheckBoxProps = { title: string keyName: keyof ConfigType checked?: boolean disabled?: boolean handleChange: (value: any, key: keyof ConfigType) => void } const CheckBoxWrapper = ({ title, keyName, checked, disabled, handleChange }: CheckBoxProps) => { return (
) } export default CheckBoxWrapper