1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 23:37:51 +01:00

15 lines
330 B
React
Raw Normal View History

import Component from '../Component';
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>
);
}
}