funky-framadate-front/mocks/old-stuff/pages/voting/voting-graph/voting-graph.component.ts

17 lines
496 B
TypeScript
Raw Normal View History

2019-08-21 14:28:50 +02:00
import { Component, OnInit } from '@angular/core';
import { BaseComponent } from '../../example/base-page/base.component';
import { ConfigService } from '../../../services/config.service';
2019-08-21 14:28:50 +02:00
@Component({
2020-04-22 12:56:18 +02:00
selector: 'app-voting-graph',
2020-04-21 10:50:26 +02:00
templateUrl: './voting-graph.component.html',
styleUrls: ['./voting-graph.component.scss'],
2019-08-21 14:28:50 +02:00
})
export class VotingGraphComponent extends BaseComponent implements OnInit {
2020-04-21 10:50:26 +02:00
constructor(public config: ConfigService) {
super(config);
}
2019-08-21 14:28:50 +02:00
2020-05-01 19:10:17 +02:00
ngOnInit(): void {}
2019-08-21 14:28:50 +02:00
}