Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created December 13, 2023 09:54
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/692389502377a6992f56130ebc8a3932 to your computer and use it in GitHub Desktop.
Save bjoerntx/692389502377a6992f56130ebc8a3932 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterOutlet } from '@angular/router';
import { DocumentEditorModule } from '@txtextcontrol/tx-ng-document-editor';
@Component({
selector: 'app-root',
standalone: true,
imports: [CommonModule, RouterOutlet, DocumentEditorModule],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
export class AppComponent {
title = 'my-editor-app';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment