import { Component } from '@angular/core'; import { environment } from '../../../../environments/environment'; import { StorageService } from '../../services/storage.service'; @Component({ selector: 'app-home', templateUrl: './home.component.html', styleUrls: ['./home.component.scss'], }) export class HomeComponent { public environment = environment; constructor(public storageService: StorageService) {} searchMyPolls() {} }