import React from 'react' type Props = { children: React.ReactNode checkBox?: { label: string checked: boolean onChange: (event: React.ChangeEvent) => void } } export default ({ children, checkBox }: Props) => { if (!(checkBox)) { return ( ) } return (
) }