You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0 KiB

5 years ago
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
5 years ago
import { NgParticlesModule } from "ng-particles";
import { NgxImageGalleryModule } from 'ngx-image-gallery';
5 years ago
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HeaderComponent } from './header/header.component';
import { AppLayoutComponent } from './app-layout/app-layout.component';
import { AboutComponent } from './about/about.component';
import { PortfolioComponent } from './portfolio/portfolio.component';
5 years ago
import { DetailComponent } from './detail/detail.component';
5 years ago
@NgModule({
declarations: [
AppComponent,
HeaderComponent,
AppLayoutComponent,
AboutComponent,
PortfolioComponent,
5 years ago
DetailComponent
5 years ago
],
imports: [
BrowserModule,
5 years ago
AppRoutingModule,
NgParticlesModule,
NgxImageGalleryModule,
HttpClientModule
5 years ago
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }