Files
FlightScore-Frontend/flightscore/src/pages/competition-page.ts
T
CodingPhoenixx e77894cd48 Added CC Navbar
2026-02-13 08:35:30 +01:00

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>
`;
}
}