mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 23:37:51 +01:00
9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
import Component from '../Component.jsx';
|
|
|
|
export default class Row extends Component {
|
|
view(vnode) {
|
|
this.attrs.addClassNames('mdc-layout-grid__inner');
|
|
return <div {...this.attrs.all()}>{vnode.children}</div>;
|
|
}
|
|
}
|