UNPKG

techhive-fires

Version:
22 lines (19 loc) 449 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { HelloComponent } from './hello/hello.component'; import { HelloService } from './HelloService.service'; @NgModule({ imports: [ CommonModule ], declarations: [HelloComponent], exports: [HelloComponent] }) export class TestModule { static forRoot() { return { ngModule: TestModule, providers: [HelloService] } } }