import React from "@modules/react"; const {useState, useCallback} = React; export default function Checkbox({checked: initialState, text, onChange: notifyParent}) { const [checked, setChecked] = useState(initialState); const onClick = useCallback(() => { notifyParent?.(!checked); setChecked(!checked); }, [notifyParent, checked]); return
{text}
; }