dvbooking/admin/src/app/components/home/home.component.ts
2025-11-10 17:33:05 +01:00

9 lines
186 B
TypeScript

import { Component } from '@angular/core';
@Component({
selector: 'app-home',
template: '<h1>Welcome to the Admin Panel!</h1>',
standalone: true,
})
export class HomeComponent {}