UNPKG

doc-viewer-angular

Version:
19 lines (16 loc) 402 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { NgxDocViewerModule } from 'modules'; @NgModule({ declarations: [ AppComponent ], imports: [ NgxDocViewerModule, BrowserModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }