Skip to content

Commit

Permalink
added dashboard changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepaMittal committed Jun 12, 2024
1 parent d4083e2 commit 8df326e
Show file tree
Hide file tree
Showing 16 changed files with 961 additions and 487 deletions.
3 changes: 3 additions & 0 deletions Blogs-Analyzer-UI/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,8 @@
}
}
}
},
"cli": {
"analytics": false
}
}
854 changes: 853 additions & 1 deletion Blogs-Analyzer-UI/package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Blogs-Analyzer-UI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"@angular/material": "^16.1.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
Expand Down
8 changes: 7 additions & 1 deletion Blogs-Analyzer-UI/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import {DashboardComponent} from "./dashboard/dashboard.component";

const routes: Routes = [];
const routes: Routes = [
{
path: '',
component: DashboardComponent
},
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
Expand Down
Loading

0 comments on commit 8df326e

Please sign in to comment.