Angular Web App
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

tabs.component.ts 268 B

4 yıl önce
123456789101112131415
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-tabs',
  4. templateUrl: './tabs.component.html',
  5. styleUrls: ['./tabs.component.scss']
  6. })
  7. export class TabsComponent implements OnInit {
  8. constructor() { }
  9. ngOnInit(): void {
  10. }
  11. }