2020-04-14 11:28:33 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { ConfigService } from '../../services/config.service';
|
|
|
|
import { BaseComponent } from '../base-page/base.component';
|
2019-08-10 17:41:01 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'framadate-pictures',
|
|
|
|
templateUrl: './pictures.component.html',
|
2020-04-14 11:28:33 +02:00
|
|
|
styleUrls: ['./pictures.component.scss'],
|
2019-08-10 17:41:01 +02:00
|
|
|
})
|
|
|
|
export class PicturesComponent extends BaseComponent implements OnInit {
|
2019-08-11 16:21:49 +02:00
|
|
|
constructor(public config: ConfigService) {
|
2019-08-10 17:41:01 +02:00
|
|
|
super(config);
|
|
|
|
}
|
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
ngOnInit() {}
|
2019-08-10 17:41:01 +02:00
|
|
|
}
|