type SimpleProps = { children: JSX.Element | string | (JSX.Element | string)[]; className?: string; }; const Title = ({ children, className }: SimpleProps) => (
{children}