import React, { useState } from "react"; import type { ComponentProps } from "react"; import { Checkbox } from "@jobber/components-native"; export function CheckboxControlledExample( props: Partial>, ) { const [checked, setChecked] = useState(false); return ( setChecked(!checked)} /> ); }