Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created August 18, 2023 15:55
Show Gist options
  • Save bjoerntx/b9fa2767e47b2e8931655e202a81c8b1 to your computer and use it in GitHub Desktop.
Save bjoerntx/b9fa2767e47b2e8931655e202a81c8b1 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { DocumentViewerModule } from '@txtextcontrol/tx-ng-document-viewer';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
DocumentViewerModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment