From 67368efd2d1ccfeb41fa9d62fa9eec781cfe53b0 Mon Sep 17 00:00:00 2001 From: NyxiumYuuki Date: Tue, 1 Jun 2021 15:56:43 +0200 Subject: [PATCH] Add Navbar modules --- frontend/src/app/app.module.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 900c015..53f6f15 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -12,7 +12,7 @@ import { MessageComponent } from './message/message.component'; import { RegisterComponent } from './register/register.component'; import { ChangePasswordComponent } from './change-password/change-password.component'; import { NavbarComponent } from './navbar/navbar.component'; - +import {NavbarModule, WavesModule, ButtonsModule, IconsModule} from 'angular-bootstrap-md' @NgModule({ declarations: [ @@ -33,6 +33,10 @@ import { NavbarComponent } from './navbar/navbar.component'; CommonModule, ReactiveFormsModule, AppRoutingModule, + NavbarModule, + WavesModule, + ButtonsModule, + IconsModule ], providers: [DatePipe], bootstrap: [AppComponent]