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

18 lines
325 B
TypeScript

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 {
}
}