element-vir
Version:
Heroic. Reactive. Declarative. Type safe. Web components without compromise.
14 lines (13 loc) • 508 B
JavaScript
import { defineElement } from 'element-vir';
import { html } from '../index.js';
import { MyWithHostClassDefinition } from './my-with-host-class-definition.element.js';
export const MyWithHostClassUsage = defineElement()({
tagName: 'my-with-host-class-usage',
render() {
return html `
<${MyWithHostClassDefinition}
class=${MyWithHostClassDefinition.hostClasses['my-with-host-class-definition-a']}
></${MyWithHostClassDefinition}>
`;
},
});