37 lines
1.5 KiB
TypeScript
37 lines
1.5 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { HeaderComponent } from './components/essentials/header/header.component';
|
|
import { FooterComponent } from './components/essentials/footer/footer.component';
|
|
import { HomeComponent } from './components/home/home.component';
|
|
import { LoginComponent } from './components/essentials/login/login.component';
|
|
import { LogoutComponent } from './components/essentials/logout/logout.component';
|
|
import { MatchesComponent } from './components/match/matches/matches.component';
|
|
import { MatchesIdComponent } from './components/match/matches-id/matches-id.component';
|
|
import { MatchesAddComponent } from './components/match/matches-add/matches-add.component';
|
|
import { SponsortComponent } from './templates/sponsort/sponsort.component';
|
|
import { MatchesDelComponent } from './components/match/matches-del/matches-del.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
HeaderComponent,
|
|
FooterComponent,
|
|
HomeComponent,
|
|
LoginComponent,
|
|
LogoutComponent,
|
|
MatchesComponent,
|
|
MatchesIdComponent,
|
|
MatchesAddComponent,
|
|
SponsortComponent,
|
|
MatchesDelComponent,
|
|
],
|
|
imports: [BrowserModule, AppRoutingModule, FormsModule, HttpClientModule],
|
|
providers: [],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|