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.

39 lines
1.3 KiB

5 years ago
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
5 years ago
import { NgParticlesModule } from "ng-particles";
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';
import { ExhibitionsComponent } from './exhibitions/exhibitions.component';
import { InstallationsComponent } from './installations/installations.component';
import { EntertainmentComponent } from './entertainment/entertainment.component';
import { PerformancesComponent } from './performances/performances.component';
import { WorkshopsComponent } from './workshops/workshops.component';
5 years ago
@NgModule({
declarations: [
AppComponent,
HeaderComponent,
AppLayoutComponent,
AboutComponent,
PortfolioComponent,
ExhibitionsComponent,
InstallationsComponent,
EntertainmentComponent,
PerformancesComponent,
WorkshopsComponent
5 years ago
],
imports: [
BrowserModule,
5 years ago
AppRoutingModule,
NgParticlesModule
5 years ago
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }