import { Link } from '@inertiajs/react'; import { route } from '@izzyjs/route/client'; import { Anchor, Box, Text } from '@mantine/core'; import { useTranslation } from 'react-i18next'; import type { LinkListProps } from '~/components/dashboard/link/list/link_list'; import { useActiveCollection } from '~/hooks/collections/use_active_collection'; import { appendCollectionId } from '~/lib/navigation'; import styles from './no_link.module.css'; interface NoLinkProps extends LinkListProps {} export function NoLink({ hideMenu }: NoLinkProps) { const { t } = useTranslation('common'); const activeCollection = useActiveCollection(); return ( {!hideMenu && ( {t('link.create')} )} ); }