import { Checkbox, Field, Label } from '@headlessui/react'; interface SensativeSelectorProps { showSensitiveTags: boolean; setShowSensitiveTags: (checked: boolean) => void; } export const SensativeSelector: React.FC = ({ showSensitiveTags, setShowSensitiveTags }) => { return (
) }