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