forked from tykayn/funky-framadate-front
16 lines
299 B
TypeScript
16 lines
299 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'framadate-poll-graphic',
|
||
|
templateUrl: './poll-graphic.component.html',
|
||
|
styleUrls: ['./poll-graphic.component.scss']
|
||
|
})
|
||
|
export class PollGraphicComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
}
|