Project

General

Profile

1
import {NgModule} from '@angular/core';
2
import {CommonModule} from '@angular/common';
3

    
4
import {RouterModule} from "@angular/router";
5

    
6
import {OtherPortalsComponent} from './other-portals.component';
7

    
8
@NgModule({
9
  imports: [
10
    CommonModule,
11
    RouterModule
12
  ],
13
  declarations: [
14
    OtherPortalsComponent
15
  ],
16
  providers: [],
17
  exports: [
18
    OtherPortalsComponent
19
  ]
20
})
21
export class OtherPortalsModule {
22
}
(3-3/3)