Angular v19
This commit is contained in:
parent
c966b817dc
commit
ff3c70dab6
6 changed files with 2954 additions and 2096 deletions
|
|
@ -2,9 +2,10 @@ import { Component, OnInit } from '@angular/core';
|
|||
import { Title, Meta } from '@angular/platform-browser';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
templateUrl: './app.component.html',
|
||||
styleUrls: ['./app.component.scss']
|
||||
selector: 'app-root',
|
||||
templateUrl: './app.component.html',
|
||||
styleUrls: ['./app.component.scss'],
|
||||
standalone: false
|
||||
})
|
||||
export class AppComponent implements OnInit{
|
||||
title = 'TFTPaths';
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-layout',
|
||||
templateUrl: './layout.component.html',
|
||||
styleUrls: ['./layout.component.scss']
|
||||
selector: 'app-layout',
|
||||
templateUrl: './layout.component.html',
|
||||
styleUrls: ['./layout.component.scss'],
|
||||
standalone: false
|
||||
})
|
||||
export class LayoutComponent implements OnInit {
|
||||
|
||||
|
|
|
|||
|
|
@ -5,10 +5,11 @@ import { DomSanitizer } from '@angular/platform-browser';
|
|||
import { Champion } from '@models/champion';
|
||||
|
||||
|
||||
@Component({
|
||||
selector: 'app-card',
|
||||
templateUrl: './card.component.html',
|
||||
styleUrls: ['./card.component.scss']
|
||||
@Component({
|
||||
selector: 'app-card',
|
||||
templateUrl: './card.component.html',
|
||||
styleUrls: ['./card.component.scss'],
|
||||
standalone: false
|
||||
})
|
||||
|
||||
export class CardComponent{
|
||||
|
|
|
|||
|
|
@ -11,10 +11,11 @@ import { DataToShare } from '@models/dataToShare';
|
|||
|
||||
|
||||
|
||||
@Component({
|
||||
selector: 'app-pool',
|
||||
templateUrl: './pool.component.html',
|
||||
styleUrls: ['./pool.component.scss']
|
||||
@Component({
|
||||
selector: 'app-pool',
|
||||
templateUrl: './pool.component.html',
|
||||
styleUrls: ['./pool.component.scss'],
|
||||
standalone: false
|
||||
})
|
||||
|
||||
export class PoolComponent implements OnInit, OnDestroy {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue