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

16 lines
436 B
TypeScript

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() {}
}