UNPKG

ngx-quill-example

Version:

The demo app for the usage of the [ngx-quill](https://github.com/KillerCodeMonkey/ngx-quill) module. This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.1.0.

52 lines (47 loc) 1.88 kB
import { NgModule } from '@angular/core' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { BrowserModule } from '@angular/platform-browser' import { QuillModule } from 'ngx-quill' import { AppComponent } from './app.component' import { ActivateRtlComponent } from './activate-rtl/activate-rtl.component' import { BubbleEditorComponent } from './bubble-editor/bubble-editor.component' import { CustomToolbarComponent } from './custom-toolbar/custom-toolbar.component' import { DefaultComponent } from './default/default.component' import { EmojiComponent } from './emoji/emoji.component' import { FormatJsonComponent } from './format-json/format-json.component' import { FormatObjectComponent } from './format-object/format-object.component' import { FormatTextComponent } from './format-text/format-text.component' import { FormulaComponent } from './formula/formula.component' import { MentionComponent } from './mention/mention.component' import { NoSanitizeHtmlComponent } from './no-sanitize-html/no-sanitize-html.component' import { NoToolbarComponent } from './no-toolbar/no-toolbar.component' import { ReactiveFormsComponent } from './reactive-forms/reactive-forms.component' import { SanitizeHtmlComponent } from './sanitize-html/sanitize-html.component' @NgModule({ bootstrap: [AppComponent], declarations: [ AppComponent, DefaultComponent, ActivateRtlComponent, SanitizeHtmlComponent, FormulaComponent, ReactiveFormsComponent, EmojiComponent, BubbleEditorComponent, MentionComponent, NoToolbarComponent, CustomToolbarComponent, FormatObjectComponent, FormatTextComponent, NoSanitizeHtmlComponent, FormatJsonComponent ], imports: [ BrowserModule, QuillModule.forRoot(), FormsModule, ReactiveFormsModule ], providers: [] }) export class AppModule { }