Skip to content

Instantly share code, notes, and snippets.

@alexisselorm
Created December 25, 2023 14:58
Show Gist options
  • Save alexisselorm/53f45a831a7f886a6a998010f34a18a1 to your computer and use it in GitHub Desktop.
Save alexisselorm/53f45a831a7f886a6a998010f34a18a1 to your computer and use it in GitHub Desktop.
AppModule
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