|
12345678910111213141516 |
- import { Component, OnInit } from '@angular/core';
-
- @Component({
- selector: 'app-home',
- templateUrl: './home.page.html',
- styleUrls: ['./home.page.scss'],
- })
- export class HomePage implements OnInit {
- selectedTab: string = 'news';
-
- constructor() { }
-
- ngOnInit() {
- }
-
- }
|