1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-20 22:09:41 +02:00
portainer/app/react/components/datatables/TableFooter.tsx
2022-09-02 18:30:34 +03:00

5 lines
175 B
TypeScript

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