status-indicator/hello-world.ts
2026-05-08 13:16:37 +02:00

9 lines
No EOL
196 B
TypeScript

import { WebComponent, html } from 'web-component-base'
class HelloWorld extends WebComponent {
get template(): any {
return html`
<h1>Hello, World!</h1>
`
}
}