Components
Loading preview...
import { useState } from "react";
import { Checkbox } from "@/components/ui/checkbox-1";
export default function DefaultDemo() {
const [checked, setChecked] = useState(false);
return (
<Checkbox checked={checked} onChange={(): void => setChecked((b) => !b)}>
Option 1
</Checkbox>
);
}