2019-08-10 17:41:01 +02:00
|
|
|
import {Component, OnInit} from '@angular/core';
|
|
|
|
import {BaseComponent} from '../base-page/base.component';
|
2019-12-03 17:20:57 +01:00
|
|
|
import {ConfigService} from '../../services/config.service';
|
2019-08-10 17:41:01 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'framadate-resume',
|
|
|
|
templateUrl: './resume.component.html',
|
|
|
|
styleUrls: ['./resume.component.scss']
|
|
|
|
})
|
|
|
|
export class ResumeComponent 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|