created basic webApplication
This commit is contained in:
17
src/app/home/home.component.ts
Normal file
17
src/app/home/home.component.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { ApiChatService } from '../api-chat.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-home',
|
||||
template: `<h3>Домашний компонент</h3>`
|
||||
|
||||
})
|
||||
export class HomeComponent implements OnInit {
|
||||
title = 'Home компонент';
|
||||
|
||||
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user