mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-25 15:58:56 +01:00
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
|
import Component from '../Component';
|
||
|
|
||
|
export default class TableBody extends Component {
|
||
|
view(vnode) {
|
||
|
return <tbody {...vnode.attrs}>{vnode.children}</tbody>;
|
||
|
}
|
||
|
}
|