17 lines
370 B
TypeScript
17 lines
370 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-about',
|
|
templateUrl: `about.component.html`,
|
|
styleUrls: [`./about.component.css`]
|
|
})
|
|
export class AboutComponent implements OnInit {
|
|
|
|
ngOnInit(): void {
|
|
console.log('Yeah, you REALLY expect me to push changes without any console debugging?');
|
|
}
|
|
|
|
}
|
|
|
|
// продам гараж
|