2019-03-08 10:43:54 +01:00
|
|
|
import { CommonModule } from '@angular/common';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-03-08 10:43:54 +01:00
|
|
|
|
|
|
|
import { SharedModule } from 'app/shared/shared.module';
|
|
|
|
import { StatuteImportListComponent } from './components/statute-import-list/statute-import-list.component';
|
|
|
|
import { StatuteParagraphListComponent } from './components/statute-paragraph-list/statute-paragraph-list.component';
|
|
|
|
import { StatuteParagraphRoutingModule } from './statute-paragraph-routing.module';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [StatuteParagraphListComponent, StatuteImportListComponent],
|
|
|
|
imports: [CommonModule, StatuteParagraphRoutingModule, SharedModule]
|
|
|
|
})
|
|
|
|
export class StatuteParagraphModule {}
|