f9427c8fb2
closes [EE-2273]
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>;
|
|
}
|