2020-04-14 11:28:33 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { ConfigService } from '../../services/config.service';
|
2020-01-22 11:18:55 +01:00
|
|
|
|
2019-11-18 19:32:14 +01:00
|
|
|
@Component({
|
2020-01-22 11:18:55 +01:00
|
|
|
selector: 'framadate-admin',
|
|
|
|
templateUrl: './admin.component.html',
|
2020-04-14 11:28:33 +02:00
|
|
|
styleUrls: ['./admin.component.scss'],
|
2019-11-18 19:32:14 +01:00
|
|
|
})
|
|
|
|
export class AdminComponent implements OnInit {
|
2020-04-14 11:28:33 +02:00
|
|
|
constructor(public config: ConfigService) {}
|
2019-11-18 19:32:14 +01:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
ngOnInit() {}
|
2019-11-18 19:32:14 +01:00
|
|
|
}
|