UNPKG

ngx-editor-n

Version:

WYSIWYG Editor for Angular Applications

34 lines (27 loc) 989 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { HttpClientModule } from '@angular/common/http'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { NgxEditorNModule } from './ngx-editor-n/ngx-editor-n.module'; import { SourceCodeDialogComponent } from './ngx-editor-n/source-code-dialog/source-code-dialog.component'; import { MatFormFieldModule, MatDialogModule } from '@angular/material'; @NgModule({ declarations: [AppComponent, SourceCodeDialogComponent], imports: [ BrowserModule, HttpClientModule, NgxEditorNModule, FormsModule, BrowserAnimationsModule, MatFormFieldModule, MatDialogModule ], providers: [], entryComponents: [SourceCodeDialogComponent], bootstrap: [AppComponent] }) export class AppModule {}