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/home/home.component.ts
Simple_Not 387e85669c
All checks were successful
continuous-integration/drone/push Build is passing
img
2022-10-20 14:58:35 +10:00

18 lines
342 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { ApiChatService } from '../api-chat.service';
@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 {
}
}