Base component using @aegisjsproject/core
& @aegisjsproject/styles
.
import { AegisComponent, TRIGGERS, SYMBOLS } from '@aegisjsproject/component';
import { html, css, appendTo, addStyles } from '@aegisjsproject/core';
const template = html`<h1>Hello, World!</h1>`;
const stlyes = css`
.foo {
color: red;
}
`
export class HTMLHelloWorldElement extends AegisComponent {
constructor() {
super({ template, styles });
}
}
HTMLHelloWorldElement.register('hello-world');