23 lines
413 B
TypeScript
23 lines
413 B
TypeScript
|
import {NgModule} from '@angular/core';
|
||
|
import {CommonModule} from '@angular/common';
|
||
|
|
||
|
import {RouterModule} from "@angular/router";
|
||
|
|
||
|
import {OtherPortalsComponent} from './other-portals.component';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
RouterModule
|
||
|
],
|
||
|
declarations: [
|
||
|
OtherPortalsComponent
|
||
|
],
|
||
|
providers: [],
|
||
|
exports: [
|
||
|
OtherPortalsComponent
|
||
|
]
|
||
|
})
|
||
|
export class OtherPortalsModule {
|
||
|
}
|