aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/app.module.ts
diff options
context:
space:
mode:
authorSonja Galovic <galovicsonja@gmail.com>2022-03-12 22:26:55 +0100
committerSonja Galovic <galovicsonja@gmail.com>2022-03-12 22:26:55 +0100
commita084a81779b5a38440f5d7f15e4d2beace6a32f9 (patch)
tree7d2bc3479713826485efd5e7752029486f7e81d1 /frontend/src/app/app.module.ts
parenta404c208274605850fcf1f97e983dabc3b187cad (diff)
Komponenta za ucitavanje i prikaz csv fajla v3; dodat material.module.ts
Diffstat (limited to 'frontend/src/app/app.module.ts')
-rw-r--r--frontend/src/app/app.module.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts
index 16bb7ce5..aa5d018d 100644
--- a/frontend/src/app/app.module.ts
+++ b/frontend/src/app/app.module.ts
@@ -10,8 +10,10 @@ import { RegisterPageComponent } from './_pages/register-page/register-page.comp
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { OnlyAuthorizedComponent } from './_pages/only-authorized/only-authorized.component';
import { DatasetLoadComponent } from './_elements/dataset-load/dataset-load.component';
-import { NgxCsvParser } from 'ngx-csv-parser';
import { AddModelComponent } from './_pages/add-model/add-model.component';
+import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
+
+import { MaterialModule } from './material.module';
@NgModule({
declarations: [
@@ -27,7 +29,9 @@ import { AddModelComponent } from './_pages/add-model/add-model.component';
AppRoutingModule,
FormsModule,
HttpClientModule,
- NgbModule
+ NgbModule,
+ BrowserAnimationsModule,
+ MaterialModule
],
providers: [],
bootstrap: [AppComponent]