import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-chat-bot', templateUrl: './chat-bot.component.html', styleUrls: ['./chat-bot.component.scss'] }) export class ChatBotComponent implements OnInit { constructor() { } ngOnInit(): void { } reload() { } }