allfree-angular-frontend / src / app / components / chat-bot / chat-bot.component.ts
chat-bot.component.ts
Raw
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() {
  }

}