mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 07:47:55 +01:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
|
import type {Vnode} from 'mithril';
|
||
|
|
||
|
import Component from '../Component';
|
||
|
|
||
|
export default class TableFooter extends Component<{}> {
|
||
|
view(vnode: Vnode) {
|
||
|
return <tfoot {...this.attrs.all()}>{vnode.children}</tfoot>;
|
||
|
}
|
||
|
}
|