aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/app.module.ts
diff options
context:
space:
mode:
authorSonja Galovic <galovicsonja@gmail.com>2022-03-08 23:38:40 +0100
committerSonja Galovic <galovicsonja@gmail.com>2022-03-08 23:38:40 +0100
commit04b1d70fb48093608cc8084fff82cb319fa0becd (patch)
tree652bca069ce5fbc97dc061db3c0709c3edd832c0 /frontend/src/app/app.module.ts
parent3b9e1089b94799ee0c82fb68c71688566ab903c6 (diff)
Komponenta za ucitavanje i prikaz csv fajla - v1 (probna)
Diffstat (limited to 'frontend/src/app/app.module.ts')
-rw-r--r--frontend/src/app/app.module.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts
index 9ccd7ddb..bada926e 100644
--- a/frontend/src/app/app.module.ts
+++ b/frontend/src/app/app.module.ts
@@ -9,13 +9,16 @@ import { LoginPageComponent } from './_pages/login-page/login-page.component';
import { RegisterPageComponent } from './_pages/register-page/register-page.component';
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 { CsvParser } from 'csv-parser';
@NgModule({
declarations: [
AppComponent,
LoginPageComponent,
RegisterPageComponent,
- OnlyAuthorizedComponent
+ OnlyAuthorizedComponent,
+ DatasetLoadComponent
],
imports: [
BrowserModule,