Project

General

Profile

1
import { NgModule } from '@angular/core';
2
import { SharedModule } from '../../shared/shared.module';
3
import { CommonModule }        from '@angular/common';
4
import {StartOverComponent} from './startOver.component';
5
import {AlertModalModule} from '../../utils/modal/alertModal.module';
6

    
7
 @NgModule({
8
  imports: [
9
    SharedModule, CommonModule, AlertModalModule
10
  ],
11
  declarations: [
12
     StartOverComponent
13
  ],
14
  exports: [StartOverComponent ]
15
})
16
export class StartOverModule { }
(15-15/15)