2024-12-28 01:36:33 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
2024-12-28 01:37:44 +00:00
|
|
|
import { PolicyComponent } from './policy/policy.component';
|
|
|
|
import { PolicyTableComponent } from './policy-table/policy-table.component';
|
|
|
|
import { PolicyAddFormComponent } from './policy-add-form/policy-add-form.component';
|
2024-12-28 01:36:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [],
|
|
|
|
imports: [
|
2024-12-28 01:37:44 +00:00
|
|
|
PolicyComponent, PolicyTableComponent, PolicyAddFormComponent
|
2024-12-28 01:36:33 +00:00
|
|
|
]
|
|
|
|
})
|
2024-12-28 01:37:44 +00:00
|
|
|
export class PoliciesModule { }
|