funky-framadate-front/src/app/core/components/home/home.component.ts

16 lines
436 B
TypeScript
Raw Normal View History

2020-11-06 11:32:58 +01:00
import { Component } from '@angular/core';
import { environment } from '../../../../environments/environment';
2021-05-03 10:06:10 +02:00
import { StorageService } from '../../services/storage.service';
2020-05-01 19:10:17 +02:00
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
})
2020-11-06 11:32:58 +01:00
export class HomeComponent {
2021-05-03 10:06:10 +02:00
public environment = environment;
constructor(public storageService: StorageService) {}
searchMyPolls() {}
2020-05-01 19:10:17 +02:00
}