diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-19 16:02:43 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-19 16:02:43 +0200 |
| commit | a9358fb8a27cd3d48547f5427797702ee2780de8 (patch) | |
| tree | 7925fe254d47f25b9a1322270cb18664f5c7f397 /src/app/app.module.ts | |
| parent | 5880656282edfb7dc1bb7073c20ccf74aad6a093 (diff) | |
| download | DevHive-Angular-a9358fb8a27cd3d48547f5427797702ee2780de8.tar DevHive-Angular-a9358fb8a27cd3d48547f5427797702ee2780de8.tar.gz DevHive-Angular-a9358fb8a27cd3d48547f5427797702ee2780de8.zip | |
Implemented navbar component; added some global stylings and changed the name of others; added icons
Diffstat (limited to 'src/app/app.module.ts')
| -rw-r--r-- | src/app/app.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 1bf44ad..f582bbc 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -25,6 +25,7 @@ import { CommentComponent } from './components/comment/comment.component'; import { CommentPageComponent } from './components/comment-page/comment-page.component'; import { PostAttachmentComponent } from './components/post-attachment/post-attachment.component'; import { RouterModule } from '@angular/router'; +import { NavbarComponent } from './components/navbar/navbar.component'; @NgModule({ declarations: [ @@ -43,7 +44,8 @@ import { RouterModule } from '@angular/router'; AdminPanelPageComponent, CommentComponent, CommentPageComponent, - PostAttachmentComponent + PostAttachmentComponent, + NavbarComponent, ], imports: [ BrowserModule.withServerTransition({ appId: 'serverApp' }), |
