import { PropsWithChildren } from 'react'; import './NestedTable.css'; export function NestedTable({ children }: PropsWithChildren) { return
{children}
; }