mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 15:27:43 +01:00
16 lines
337 B
JavaScript
16 lines
337 B
JavaScript
import '@material/mwc-ripple';
|
|
|
|
import Component from '../Component.jsx';
|
|
|
|
export default class PrimaryAction extends Component {
|
|
view(vnode) {
|
|
this.attrs.addClassNames('mdc-card__primary-action');
|
|
return (
|
|
<div {...this.attrs.all()} tabindex="0">
|
|
<mwc-ripple/>
|
|
{vnode.children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|