UNPKG

ngx-editor-sodo

Version:

WYSIWYG Editor for Angular Applications

23 lines (20 loc) 565 B
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { HttpClientModule } from '@angular/common/http'; import { FormsModule } from '@angular/forms'; import { AppComponent } from './app.component'; import { NgxEditorModule } from './ngx-editor/ngx-editor.module'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, HttpClientModule, NgxEditorModule, FormsModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }