Angular LMS app
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.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.

tabs.component.ts 296 B

5 lat temu
5 lat temu
5 lat temu
5 lat temu
12345678910111213141516
  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. selectedTab: string = 'home';
  9. constructor() { }
  10. ngOnInit(): void {
  11. }
  12. }