import { Link } from '@/frame/components/Link' import { GraphqlItem } from './GraphqlItem' import { useTranslation } from '@/languages/components/useTranslation' import type { UnionT } from './types' type Props = { item: UnionT } export function Union({ item }: Props) { const { t } = useTranslation('graphql') const heading = t('reference.possible_types').replace('{{ GraphQLItemTitle }}', item.name) return ( ) }