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