11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { AppSharedModule } from '../../app.shared';
|
|
import { IndexComponent } from './index/index.component';
|
|
import { ErrorsRoutingModule } from './errors-routing.module';
|
|
|
|
@NgModule({
|
|
declarations: [IndexComponent],
|
|
imports: [AppSharedModule, ErrorsRoutingModule],
|
|
})
|
|
export class ErrorsModule {}
|