import { useRecoilState } from 'recoil'; import { Switch } from '~/components/ui'; import { useLocalize } from '~/hooks'; import store from '~/store'; export default function PlusCommandSwitch() { const [plusCommand, setPlusCommand] = useRecoilState(store.plusCommand); const localize = useLocalize(); const handleCheckedChange = (value: boolean) => { setPlusCommand(value); }; return (
{localize('com_nav_plus_command_description')}
); }