1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-25 07:47:55 +01:00

15 lines
334 B
React
Raw Normal View History

import Component from '../Component.jsx';
export default class Actions extends Component {
view(vnode) {
this.attrs.addClassNames('mdc-card__actions', {
'mdc-card__actions--full-bleed': this.attrs.has('full-bleed')
});
return (
<div {...this.attrs.all()}>
{vnode.children}
</div>
);
}
}