import type { PropsWithChildren } from 'react' import { cn } from 'ui' export function NamedCodeBlock({ name, children }: PropsWithChildren<{ name: string }>) { return (
{name}
{children}
) }