import { Fieldset, Stack, Text } from '@mantine/core'; import { useTranslation } from 'react-i18next'; import { CollectionListSelector } from '~/components/dashboard/collection/collection_list_selector'; import { LinkListSelector } from '~/components/dashboard/link/link_list_selector'; import { useIsMobile } from '~/hooks/use_is_mobile'; export function UserPreferences() { const { t } = useTranslation(); const isMobile = useIsMobile(); return (
); }