import { LinkIcon } from '@primer/octicons-react' type Props = { slug: string title: string descriptionHTML: string } export function RestOperationHeading({ slug, title, descriptionHTML }: Props) { return ( <>

{title}

) }