Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created March 20, 2024 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/4cd05bc39f985f26ad202e45b10f5946 to your computer and use it in GitHub Desktop.
Save bjoerntx/4cd05bc39f985f26ad202e45b10f5946 to your computer and use it in GitHub Desktop.
import { HttpClientModule } from '@angular/common/http';
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, HttpClientModule,
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