import React from 'react'; type Props = { optionId: string label: string, isChecked: boolean, onChecked: () => void, children: React.ReactNode, } const CustomizeFunctionOption = (props: Props): JSX.Element => { const { optionId, label, isChecked, onChecked, children, } = props; return (
{children}
); }; export default CustomizeFunctionOption;