11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
import { TranslatePipe } from '../../translate/translate.pipe';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-contacts-page',
|
||
|
|
imports: [TranslatePipe],
|
||
|
|
templateUrl: './contacts-page.html',
|
||
|
|
styleUrl: './contacts-page.scss'
|
||
|
|
})
|
||
|
|
export class ContactsPage {}
|