import { ReactNode } from 'react'; interface Props { children: ReactNode; } export function HeaderStats({ children }: Props) { return
{children}
; }