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

6 lines
175 B
TypeScript

import { PropsWithChildren } from 'react';
export function TableFooter({ children }: PropsWithChildren<unknown>) {
return <footer className="footer">{children}</footer>;
}