/// import { ColorDialogProps } from "./RNColorDialog"; /** * Pop up ColorDialog inheriting the functionality of nodegui's `QColorDialog` * @example * ```javascript * function ColorDialogExample(props){ * const [open, setOpen] = useState(false); * const events = useEventHandler({ * colorSelected(color){ * //....do whatever * } * }, [....deps]) * return ( * * *