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

13 lines
272 B
JavaScript
Raw Normal View History

import Component from '../Component';
export default class PrimaryAction extends Component {
view(vnode) {
return (
<div class="mdc-card__primary-action" tabindex="0">
<div class="mdc-card__ripple"/>
{vnode.children}
</div>
);
}
}