forked from tykayn/funky-framadate-front
20 lines
475 B
TypeScript
20 lines
475 B
TypeScript
|
import {Component, OnInit} from '@angular/core';
|
||
|
import {ConfigService} from '../../config.service';
|
||
|
import {BaseComponent} from '../base-page/base.component';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'framadate-pictures',
|
||
|
templateUrl: './pictures.component.html',
|
||
|
styleUrls: ['./pictures.component.scss']
|
||
|
})
|
||
|
export class PicturesComponent extends BaseComponent implements OnInit {
|
||
|
|
||
|
constructor(config: ConfigService) {
|
||
|
super(config);
|
||
|
}
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
}
|