mirror of https://github.com/portainer/portainer
6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
|
import { PropsWithChildren } from 'react';
|
||
|
|
||
|
export function TableFooter({ children }: PropsWithChildren<unknown>) {
|
||
|
return <footer className="footer">{children}</footer>;
|
||
|
}
|