14 lines
487 B
TypeScript
14 lines
487 B
TypeScript
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
|
|
import { ContentService } from '../../core/content/content.service';
|
|
import { PagePlaceholder } from '../../shared/page-placeholder/page-placeholder';
|
|
|
|
@Component({
|
|
selector: 'app-contact-page',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
imports: [PagePlaceholder],
|
|
templateUrl: './contact.html',
|
|
})
|
|
export class ContactPage {
|
|
protected readonly page = inject(ContentService).page('contact');
|
|
}
|