mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
import { Component } from '@angular/core';
|
|
import { ConfigService } from '../../../services/config.service';
|
|
|
|
@Component({
|
|
selector: 'app-choices-list',
|
|
templateUrl: './choices-list.component.html',
|
|
styleUrls: ['./choices-list.component.scss'],
|
|
})
|
|
export class ChoicesListComponent {
|
|
constructor(public config: ConfigService) {}
|
|
}
|