import React, { FC, HTMLProps, memo } from 'react'; import { FormGroup, Label, Input } from 'reactstrap'; import { uuidGen } from './utils/func'; const Checkbox: FC> = ({ children, onChange, style }) => { const id = uuidGen(); return ( ) } export default memo(Checkbox);