Skip to content

Instantly share code, notes, and snippets.

@clement-joye
Created May 15, 2021 12:22
Show Gist options
  • Save clement-joye/34af4721f0fb17669055044566443c12 to your computer and use it in GitHub Desktop.
Save clement-joye/34af4721f0fb17669055044566443c12 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';
import { AppComponent } from './app.component';
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
import { DashboardGalleryComponent } from './dashboard-gallery/dashboard-gallery.component';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({
declarations: [
AppComponent,
DashboardGalleryComponent,
],
imports: [
BrowserModule,
HttpClientModule,
FontAwesomeModule,
NgbModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment