18 lines
563 B
TypeScript
18 lines
563 B
TypeScript
import { LitElement, html } from 'lit';
|
|
import { customElement } from 'lit/decorators.js';
|
|
|
|
@customElement('competition-page')
|
|
export class CompetitionPage extends LitElement {
|
|
render() {
|
|
return html`
|
|
<h1>Welcome to the Competitions</h1>
|
|
<h1>Welcome to the Competitions</h1>
|
|
<h1>Welcome to the Competitions</h1>
|
|
<h1>Welcome to the Competitions</h1>
|
|
<h1>Welcome to the Competitions</h1>
|
|
<h1>Welcome to the Competitions</h1>
|
|
<h1>Welcome to the Competitions</h1>
|
|
<h1>Welcome to the Competitions</h1>
|
|
`;
|
|
}
|
|
} |