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

14 lines
285 B
JavaScript
Vendored

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