12 lines
308 B
TypeScript
12 lines
308 B
TypeScript
import { Component } from '@angular/core';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
@Component({
|
|
selector: 'app-privacy',
|
|
standalone: true,
|
|
imports: [TranslateModule],
|
|
templateUrl: './privacy.component.html',
|
|
styleUrl: './privacy.component.scss',
|
|
})
|
|
export class PrivacyComponent {}
|