first commit
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import {MatToolbarModule} from '@angular/material/toolbar';
|
||||
import {MatTableModule} from '@angular/material/table';
|
||||
import {MatButtonModule} from '@angular/material/button';
|
||||
import { MatSortModule } from '@angular/material/sort';
|
||||
import {MatDialogModule} from '@angular/material/dialog';
|
||||
import {MatListModule} from '@angular/material/list';
|
||||
import {MatTooltipModule} from '@angular/material/tooltip';
|
||||
import {MatInputModule} from '@angular/material/input';
|
||||
import {MatFormFieldModule} from '@angular/material/form-field';
|
||||
|
||||
import { OverviewRoutingModule } from './overview-routing.module';
|
||||
import { OverviewComponent } from './overview.component';
|
||||
import { TeamsService } from '../teams.service';
|
||||
import { DetailsComponent } from './details/details.component';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
OverviewComponent,
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
OverviewRoutingModule,
|
||||
MatToolbarModule,
|
||||
MatTableModule,
|
||||
MatSortModule,
|
||||
MatButtonModule,
|
||||
MatDialogModule,
|
||||
MatListModule,
|
||||
MatTooltipModule,
|
||||
TranslateModule,
|
||||
MatInputModule,
|
||||
MatFormFieldModule,
|
||||
DetailsComponent
|
||||
],
|
||||
providers: [ TeamsService ],
|
||||
exports: [ OverviewComponent ]
|
||||
})
|
||||
export class OverviewModule { }
|
||||
Reference in New Issue
Block a user