forked from tykayn/funky-framadate-front
16 lines
356 B
TypeScript
16 lines
356 B
TypeScript
|
import {Component} from '@angular/core';
|
||
|
import {ConfigService} from "../../../services/config.service";
|
||
|
|
||
|
@Component({
|
||
|
selector: 'framadate-choices-list',
|
||
|
templateUrl: './choices-list.component.html',
|
||
|
styleUrls: ['./choices-list.component.scss']
|
||
|
})
|
||
|
export class ChoicesListComponent {
|
||
|
|
||
|
constructor(public config: ConfigService) {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|