Files
ldpv2/backup_story2_20260208_120845/applications/application-detail/application-detail.component.ts
T
2026-02-08 12:16:21 +01:00

12 lines
516 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'app-application-detail',
standalone: true,
imports: [CommonModule],
template: `<div class="container"><h1>Application Detail</h1><p class="info-message">️ Coming in Story 2</p></div>`,
styles: [`.container { max-width: 1200px; margin: 2rem auto; padding: 2rem; } .info-message { background: #e3f2fd; padding: 1rem; border-radius: 4px; }`]
})
export class ApplicationDetailComponent {}