portainer/app/react/components/datatables/InnerDatatable.tsx

8 lines
213 B
TypeScript

import { PropsWithChildren } from 'react';
import './InnerDatatable.css';
export function InnerDatatable({ children }: PropsWithChildren<unknown>) {
return <div className="inner-datatable">{children}</div>;
}