Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

home.page.ts 294 B

12345678910111213141516
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-home',
  4. templateUrl: './home.page.html',
  5. styleUrls: ['./home.page.scss'],
  6. })
  7. export class HomePage implements OnInit {
  8. selectedTab: string = 'news';
  9. constructor() { }
  10. ngOnInit() {
  11. }
  12. }