17 lines
288 B
TypeScript
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 {
|
|
}
|
|
|
|
}
|