Created
December 25, 2023 14:58
-
-
Save alexisselorm/53f45a831a7f886a6a998010f34a18a1 to your computer and use it in GitHub Desktop.
AppModule
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { HttpClientModule } from '@angular/common/http'; | |
import { NgModule } from '@angular/core'; | |
import { BrowserModule } from '@angular/platform-browser'; | |
import { AppComponent } from './app.component'; | |
import { ReactiveFormsModule } from '@angular/forms'; | |
import { CKEditorModule } from '@ckeditor/ckeditor5-angular'; | |
@NgModule({ | |
declarations: [AppComponent], | |
imports: [ | |
BrowserModule, | |
HttpClientModule, | |
ReactiveFormsModule, | |
CKEditorModule, | |
], | |
providers: [], | |
bootstrap: [AppComponent], | |
}) | |
export class AppModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment