Files
print-calculator/frontend/src/app/features/about/about-page.component.ts
Joe Küng bcdeafe119
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 23s
Build, Test and Deploy / build-and-push (push) Successful in 22s
Build, Test and Deploy / deploy (push) Successful in 5s
chore(web): refractor
2026-02-06 11:33:25 +01:00

14 lines
320 B
TypeScript

import { Component } from '@angular/core';
import { TranslateModule } from '@ngx-translate/core';
@Component({
selector: 'app-about-page',
standalone: true,
imports: [TranslateModule],
templateUrl: './about-page.component.html',
styleUrl: './about-page.component.scss'
})
export class AboutPageComponent {}