import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators.js';
@customElement('competition-page')
export class CompetitionPage extends LitElement {
render() {
return html`
Welcome to the Competitions
Welcome to the Competitions
Welcome to the Competitions
Welcome to the Competitions
Welcome to the Competitions
Welcome to the Competitions
Welcome to the Competitions
Welcome to the Competitions
`;
}
}