Update to set 5 and add static data from League of Legend

This commit is contained in:
Daniel Rodriguez 2021-09-18 19:26:42 +02:00
parent 9fb13409d1
commit 5f06b288b1
201 changed files with 1362 additions and 935 deletions

View file

@ -1,16 +1,21 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PoolRoutingModule } from './pool-routing.module';
import { ReactiveFormsModule } from '@angular/forms';
import { PoolService } from 'src/modules/pool/services/pool.service';
import { LayoutComponent } from './components/layout/layout.component';
import { HomeComponent } from './components/home/home.component';
import { CommonModule } from '@angular/common';
import { removeSetPipe } from 'src/pipes/removeSet.pipe';
@NgModule({
declarations: [
LayoutComponent,
HomeComponent
HomeComponent,
removeSetPipe
],
imports: [
CommonModule,
@ -19,4 +24,5 @@ import { CommonModule } from '@angular/common';
],
providers: [PoolService]
})
export class PoolModule { }