forked from tykayn/funky-framadate-front
17 lines
496 B
TypeScript
17 lines
496 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { BaseComponent } from '../../example/base-page/base.component';
|
|
import { ConfigService } from '../../../services/config.service';
|
|
|
|
@Component({
|
|
selector: 'app-voting-graph',
|
|
templateUrl: './voting-graph.component.html',
|
|
styleUrls: ['./voting-graph.component.scss'],
|
|
})
|
|
export class VotingGraphComponent extends BaseComponent implements OnInit {
|
|
constructor(public config: ConfigService) {
|
|
super(config);
|
|
}
|
|
|
|
ngOnInit(): void {}
|
|
}
|