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-08-05 19:22:00 +02:00
|
|
|
import { LayoutComponent } from './components/layout/layout.component';
|
|
|
|
|
import { HomeComponent } from './components/home/home.component';
|
2021-09-18 19:26:42 +02:00
|
|
|
|
2021-08-05 19:22:00 +02:00
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
|
|
|
|
LayoutComponent,
|
2021-09-18 19:28:53 +02:00
|
|
|
HomeComponent
|
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 { }
|