9 lines
No EOL
196 B
TypeScript
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>
|
|
`
|
|
}
|
|
} |