refactor(ui/datatables): migrate views to use datatable component [EE-4064] (#7609)

This commit is contained in:
Chaim Lev-Ari
2022-11-22 14:16:34 +02:00
committed by GitHub
parent 0f0513c684
commit fe8e834dbf
90 changed files with 1714 additions and 2717 deletions

View File

@@ -0,0 +1,7 @@
import { PropsWithChildren } from 'react';
import './NestedTable.css';
export function NestedTable({ children }: PropsWithChildren<unknown>) {
return <div className="inner-datatable">{children}</div>;
}