import type { ReactNode, CSSProperties } from 'react';
export function Section({ title, description, children }: { title: string; description: string; children: ReactNode }) {
return (
{title}
{description}
{children}
);
}
export function Row({ children, style }: { children: ReactNode; style?: CSSProperties }) {
return {children}
;
}
export function CodeLabel({ text }: { text: string }) {
return {text}
;
}
export function DemoLabel({ text }: { text: string }) {
return {text}
;
}