diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-19 21:58:00 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-19 21:58:00 +0200 |
commit | 092ea8c9a0a80857e2da47abc789d48d79af405a (patch) | |
tree | 77ae0c6eeb8785ea9008af8e862beffc98b4bd61 /frontend/src/app/app.module.ts | |
parent | 923188daa0c90a07c57ecdc6957fcb569b5aa73a (diff) | |
parent | 32d776709f2b5df14dbcfd3f610306a899959851 (diff) |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
Diffstat (limited to 'frontend/src/app/app.module.ts')
-rw-r--r-- | frontend/src/app/app.module.ts | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 6a95bfe6..41aec3b5 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -49,8 +49,11 @@ import { ItemExperimentComponent } from './_elements/item-experiment/item-experi import { YesNoDialogComponent } from './_modals/yes-no-dialog/yes-no-dialog.component'; import { Configuration } from './configuration.service'; import { PointLinechartComponent } from './point-linechart/point-linechart.component'; +import { GraficiComponent } from './grafici/grafici.component'; +import { MixedChartComponent } from './mixed-chart/mixed-chart.component'; import { LineChartComponent } from './_elements/line-chart/line-chart.component'; +import { MetricViewComponent } from './_elements/metric-view/metric-view.component'; export function initializeApp(appConfig: Configuration) { return () => appConfig.load(); } @@ -89,9 +92,15 @@ export function initializeApp(appConfig: Configuration) { GraphComponent, TrainingComponent, ItemExperimentComponent, - YesNoDialogComponent, + YesNoDialogComponent, + LineChartComponent, PointLinechartComponent, - LineChartComponent + GraficiComponent, + MixedChartComponent, + LineChartComponent, + MetricViewComponent, + + ], imports: [ BrowserModule, |