mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 15:27:43 +01:00
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
import Component from '../Component.jsx';
|
|
|
|
export default class TableHead extends Component {
|
|
view(vnode) {
|
|
return <thead {...this.attrs.all()}>{vnode.children}</thead>;
|
|
}
|
|
}
|