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.
44 lines
1.4 KiB
44 lines
1.4 KiB
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
import { NgParticlesModule } from "ng-particles";
|
|
import { NgxImageGalleryModule } from 'ngx-image-gallery';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { AngularEditorModule } from '@kolkov/angular-editor';
|
|
|
|
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';
|
|
import { DetailComponent } from './detail/detail.component';
|
|
import { AdminComponent } from './admin/admin.component';
|
|
import { HomeComponent } from './home/home.component';
|
|
import { SpinnerComponent } from './spinner/spinner.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
HeaderComponent,
|
|
AppLayoutComponent,
|
|
AboutComponent,
|
|
PortfolioComponent,
|
|
DetailComponent,
|
|
AdminComponent,
|
|
HomeComponent,
|
|
SpinnerComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
NgParticlesModule,
|
|
NgxImageGalleryModule,
|
|
FormsModule,
|
|
AngularEditorModule,
|
|
HttpClientModule
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|