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