Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created August 18, 2023 15:51
Show Gist options
  • Save bjoerntx/1c230dbb298c4ef5f6d4065c17bec4b4 to your computer and use it in GitHub Desktop.
Save bjoerntx/1c230dbb298c4ef5f6d4065c17bec4b4 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 { DocumentEditorModule } from '@txtextcontrol/tx-ng-document-editor';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
DocumentEditorModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment