mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
20 lines
474 B
TypeScript
20 lines
474 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
import {BaseComponent} from '../base-page/base.component';
|
|
import {ConfigService} from '../../config.service';
|
|
|
|
@Component({
|
|
selector: 'framadate-resume',
|
|
templateUrl: './resume.component.html',
|
|
styleUrls: ['./resume.component.scss']
|
|
})
|
|
export class ResumeComponent extends BaseComponent implements OnInit {
|
|
|
|
constructor(public config: ConfigService) {
|
|
super(config);
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|