forked from tykayn/funky-framadate-front
12 lines
339 B
TypeScript
12 lines
339 B
TypeScript
import { Component } from '@angular/core';
|
|
import { ConfigService } from '../../../services/config.service';
|
|
|
|
@Component({
|
|
selector: 'app-comments-list',
|
|
templateUrl: './comments-list.component.html',
|
|
styleUrls: ['./comments-list.component.scss'],
|
|
})
|
|
export class CommentsListComponent {
|
|
constructor(public config: ConfigService) {}
|
|
}
|