funky-framadate-front/src/app/pages/voting/voting-graph/voting-graph.component.ts

17 lines
520 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({
selector: 'framadate-voting-graph',
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 {
constructor(public config: ConfigService) {
super(config);
}
2019-08-21 14:28:50 +02:00
ngOnInit() {}
2019-08-21 14:28:50 +02:00
}