feat(ops-dashboard): implement OpsServer and dashboard component with initial rendering
This commit is contained in:
18
ts_web/elements/ops-dashboard.ts
Normal file
18
ts_web/elements/ops-dashboard.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import {
|
||||
DeesElement,
|
||||
css,
|
||||
cssManager,
|
||||
customElement,
|
||||
html,
|
||||
state,
|
||||
type TemplateResult
|
||||
} from '@design.estate/dees-element';
|
||||
|
||||
@customElement('ops-dashboard')
|
||||
export class OpsDashboard extends DeesElement {
|
||||
public render(): TemplateResult {
|
||||
return html`
|
||||
hello
|
||||
`;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user