import React from 'react' import {Heading, UnorderedList, InlineLink} from '@primer/react-brand' import {MdxFile} from 'nextra' import styles from './RelatedContentLinks.module.css' import {LinkExternalIcon} from '@primer/octicons-react' export type RelatedContentLink = MdxFile & { title: string } export type RelatedContentLinksProps = { links?: RelatedContentLink[] | [] } export function RelatedContentLinks({links}: RelatedContentLinksProps) { if (!links?.length) return null return (