10 lines
298 B
TypeScript
10 lines
298 B
TypeScript
|
|
import { Component, ChangeDetectionStrategy } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-guarantee-ru',
|
||
|
|
templateUrl: './guarantee-ru.component.html',
|
||
|
|
styleUrls: ['../guarantee.component.scss'],
|
||
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
||
|
|
})
|
||
|
|
export class GuaranteeRuComponent {}
|