44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { BackendService } from './services/backend.service';
|
|
import { TaskFormComponent } from './task-form/task-form.component';
|
|
import { UserstoryFormComponent } from './userstory-form/userstory-form.component';
|
|
import { SprintFormComponent } from './sprint-form/sprint-form.component';
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { UserstoryTableComponent } from './userstory-table/userstory-table.component';
|
|
import { TaskTableComponent } from './task-table/task-table.component';
|
|
import { SprintTableComponent } from './sprint-table/sprint-table.component';
|
|
import { DashboardComponent } from './dashboard/dashboard.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
TaskTableComponent,
|
|
TaskFormComponent,
|
|
UserstoryTableComponent,
|
|
UserstoryFormComponent,
|
|
UserstoryTableComponent,
|
|
SprintFormComponent,
|
|
SprintTableComponent,
|
|
DashboardComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
HttpClientModule,
|
|
FormsModule,
|
|
NgbModule
|
|
],
|
|
providers: [
|
|
BackendService,
|
|
],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|