import type { ReactNode } from 'react'; interface StepTitleProps { children: ReactNode; } /** * A visual heading for Steps that doesn't appear in the Table of Contents. * Use this instead of ### headings inside when you have multiple * tabs/frameworks that would otherwise duplicate TOC entries. */ export function StepTitle({ children }: StepTitleProps) { return (
{children}
); }