1
0
mirror of synced 2025-12-19 18:10:59 -05:00
Files
docs/src/graphql/components/Union.tsx

28 lines
727 B
TypeScript

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 (
<GraphqlItem item={item} heading={heading}>
<ul>
{item.possibleTypes.map((type) => (
<li key={type.id}>
<Link href={type.href} makeAbsolute>
<code>{type.name}</code>
</Link>
</li>
))}
</ul>
</GraphqlItem>
)
}