13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-twitter-bot-info-dialog',
|
|
templateUrl: './twitter-bot-info-dialog.component.html',
|
|
styleUrls: ['./twitter-bot-info-dialog.component.scss'],
|
|
})
|
|
export class TwitterBotInfoDialogComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
}
|