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