This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/home/home.component.ts
RakVhalate 97baca05a7
All checks were successful
continuous-integration/drone/push Build is passing
new structire
2022-10-22 15:56:19 +10:00

17 lines
288 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-home',
template: `<img src="http://static.vdk2ch.ru:15555/test-public/sin.jpg">`
})
export class HomeComponent implements OnInit {
title = 'Home компонент';
ngOnInit(): void {
}
}