type Props = { code: string; }; export default function InlineCode({ code }: Props) { return ( {code} ); }