funky-framadate-front/src/app/pages/password/password.component.ts

20 lines
485 B
TypeScript
Raw Normal View History

2019-08-21 14:28:50 +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-21 14:28:50 +02:00
@Component({
selector: 'framadate-password',
templateUrl: './password.component.html',
styleUrls: ['./password.component.scss']
})
export class PasswordComponent extends BaseComponent implements OnInit {
2019-08-21 14:28:50 +02:00
constructor(public config: ConfigService) {
super(config);
}
2019-08-21 14:28:50 +02:00
ngOnInit() {
2019-08-21 14:28:50 +02:00
}
}