cavallium-website/src/app/app.module.ts

29 lines
839 B
TypeScript
Raw Normal View History

2019-04-12 20:20:38 +02:00
import { BrowserModule } from "@angular/platform-browser";
import { NgModule } from "@angular/core";
2019-04-11 19:57:39 +02:00
2019-04-12 20:20:38 +02:00
import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
import { HomeComponent } from "./pages/home/home.component";
import { NavbarComponent } from "./gui/navbar/navbar.component";
import { FooterComponent } from "./gui/footer/footer.component";
import { ArticleComponent } from "./article/article.component";
import { RouterEmptyComponent } from "./gui/router-empty/router-empty.component";
2019-04-11 19:57:39 +02:00
@NgModule({
declarations: [
2019-04-12 00:16:56 +02:00
AppComponent,
HomeComponent,
NavbarComponent,
2019-04-12 20:20:38 +02:00
FooterComponent,
ArticleComponent,
RouterEmptyComponent
2019-04-11 19:57:39 +02:00
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }