diff options
Diffstat (limited to 'frontend/src/app/app.module.ts')
-rw-r--r-- | frontend/src/app/app.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 4f26046e..16bb7ce5 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -11,6 +11,7 @@ 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'; @NgModule({ declarations: [ @@ -18,7 +19,8 @@ import { NgxCsvParser } from 'ngx-csv-parser'; LoginPageComponent, RegisterPageComponent, OnlyAuthorizedComponent, - DatasetLoadComponent + DatasetLoadComponent, + AddModelComponent ], imports: [ BrowserModule, |