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