Projekt

Obecné

Profil

Stáhnout (2.79 KB) Statistiky
| Větev: | Tag: | Revize:
1
import { BrowserModule } from '@angular/platform-browser';
2
import { NgModule } from '@angular/core';
3
import { HttpClientModule } from '@angular/common/http';
4

    
5
import { AppRoutingModule } from './app-routing.module';
6
import { AppComponent } from './app.component';
7
import { FormsModule } from '@angular/forms';
8
import { HomeComponent } from './components/pages/home/home.component';
9
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
10
import { MatToolbarModule } from '@angular/material/toolbar';
11
import { MatButtonModule } from '@angular/material/button';
12
import { MatIconModule } from '@angular/material/icon';
13
import { SearchComponent } from './components/pages/search/search.component';
14
import { BrowseComponent } from './components/pages/browse/browse.component';
15
import { UploadComponent } from './components/pages/upload/upload.component';
16
import { HelpComponent } from './components/pages/help/help.component';
17
import { MatSelectModule } from '@angular/material/select';
18
import { SearchBoxComponent } from './components/shared-components/search-box/search-box.component';
19
import { MatProgressBarModule } from '@angular/material/progress-bar';
20
import { TableComponent } from './components/pages/browse/table/table.component';
21
import { MatTableModule } from '@angular/material/table';
22
import { MatPaginatorModule } from '@angular/material/paginator';
23
import { MatSortModule } from '@angular/material/sort';
24
import { MatDialogModule } from '@angular/material/dialog';
25
import { AboutDialogComponent } from './components/shared-components/about-dialog/about-dialog.component';
26
import { SearchPaginatorComponent } from './components/pages/search/search-paginator/search-paginator.component';
27
import { DataHolderService } from './services/data-holder/data-holder.service';
28
import { MainNavComponent } from './components/layout/main-nav/main-nav.component';
29
import { LayoutModule } from '@angular/cdk/layout';
30
import { MatSidenavModule } from '@angular/material/sidenav';
31
import { MatListModule } from '@angular/material/list';
32
import { DatePipe } from '@angular/common';
33

    
34
@NgModule({
35
  declarations: [
36
    AppComponent,
37
    HomeComponent,
38
    SearchComponent,
39
    BrowseComponent,
40
    UploadComponent,
41
    HelpComponent,
42
    SearchBoxComponent,
43
    TableComponent,
44
    AboutDialogComponent,
45
    SearchPaginatorComponent,
46
    MainNavComponent,
47
  ],
48
  imports: [
49
    BrowserModule,
50
    AppRoutingModule,
51
    FormsModule,
52
    HttpClientModule,
53
    BrowserAnimationsModule,
54
    MatToolbarModule,
55
    MatButtonModule,
56
    MatIconModule,
57
    MatSelectModule,
58
    MatProgressBarModule,
59
    MatTableModule,
60
    MatPaginatorModule,
61
    MatSortModule,
62
    MatDialogModule,
63
    LayoutModule,
64
    MatSidenavModule,
65
    MatListModule
66
  ],
67
  providers: [DataHolderService, DatePipe],
68
  bootstrap: [AppComponent]
69
})
70
export class AppModule { }
(6-6/6)