Pool module refactor
This commit is contained in:
parent
ea73b94e24
commit
c266c7602b
12 changed files with 50 additions and 22 deletions
22
src/modules/pool/pool.module.ts
Normal file
22
src/modules/pool/pool.module.ts
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
|
||||
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';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
LayoutComponent,
|
||||
HomeComponent
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
PoolRoutingModule,
|
||||
ReactiveFormsModule
|
||||
],
|
||||
providers: [PoolService]
|
||||
})
|
||||
export class PoolModule { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue