export interface TitleProps { children?: React.ReactNode; } export function Title(props: TitleProps) { return

{props.children}

; }