This repository has been archived on 2025-04-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Angular_App/src/app/app.component.ts
RakVhalate d0815b5772
All checks were successful
continuous-integration/drone/push Build is passing
Fixed scroll
2022-12-04 04:39:18 +10:00

21 lines
247 B
TypeScript

import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: `app.component.html`,
styleUrls:['app.component.css']
})
export class AppComponent {
title = 'Nedvach Angular';
ngOnInit(): void {
}
}