2021-08-05 19:22:00 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
2021-09-18 19:26:42 +02:00
|
|
|
import { CommonModule } from '@angular/common';
|
2021-08-05 19:22:00 +02:00
|
|
|
|
|
|
|
|
import { PoolRoutingModule } from './pool-routing.module';
|
|
|
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
2021-09-18 19:26:42 +02:00
|
|
|
|
2021-08-05 19:22:00 +02:00
|
|
|
import { PoolService } from 'src/modules/pool/services/pool.service';
|
2021-09-18 19:26:42 +02:00
|
|
|
|
2021-09-20 17:24:43 +02:00
|
|
|
import { PoolComponent } from './components/pool/pool.component';
|
2021-09-20 17:51:12 +02:00
|
|
|
import { CardComponent } from './components/card/card.component';
|
2021-09-18 19:26:42 +02:00
|
|
|
|
2021-08-05 19:22:00 +02:00
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
2021-09-20 17:51:12 +02:00
|
|
|
PoolComponent,
|
|
|
|
|
CardComponent
|
2021-08-05 19:22:00 +02:00
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
PoolRoutingModule,
|
|
|
|
|
ReactiveFormsModule
|
|
|
|
|
],
|
|
|
|
|
providers: [PoolService]
|
|
|
|
|
})
|
2021-09-18 19:26:42 +02:00
|
|
|
|
2021-08-05 19:22:00 +02:00
|
|
|
export class PoolModule { }
|