20 lines
351 B
TypeScript
20 lines
351 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { Eventoi } from '../interfaces/eventoi';
|
|
import { FeedService } from '../services/feed.service';
|
|
|
|
@Component({
|
|
selector: 'app-tab2',
|
|
templateUrl: 'tab2.page.html',
|
|
styleUrls: ['tab2.page.scss']
|
|
})
|
|
export class Tab2Page implements OnInit{
|
|
|
|
|
|
constructor() {}
|
|
|
|
ngOnInit(){
|
|
|
|
}
|
|
|
|
}
|