import type { ReactNode } from 'react'; /** * Lays out its two children side-by-side (explanatory text + a visual/terminal) * once the screen is wide enough, stacking them on narrower viewports. Drop a * markdown paragraph and a component inside it in MDX: * * * Some explanatory copy… * * * */ export function MediaSplit({ children }: { children: ReactNode }) { return (
{children}
); }