diff options
Diffstat (limited to 'client/src/app/app.module.ts')
-rw-r--r-- | client/src/app/app.module.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index e71641e0d..342589003 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts | |||
@@ -20,6 +20,7 @@ import { LoginModule } from './login' | |||
20 | import { SignupModule } from './signup' | 20 | import { SignupModule } from './signup' |
21 | import { SharedModule } from './shared' | 21 | import { SharedModule } from './shared' |
22 | import { VideosModule } from './videos' | 22 | import { VideosModule } from './videos' |
23 | import { MenuComponent, MenuAdminComponent } from './menu' | ||
23 | 24 | ||
24 | export function metaFactory (): MetaLoader { | 25 | export function metaFactory (): MetaLoader { |
25 | return new MetaStaticLoader({ | 26 | return new MetaStaticLoader({ |
@@ -47,7 +48,10 @@ const APP_PROVIDERS = [ | |||
47 | @NgModule({ | 48 | @NgModule({ |
48 | bootstrap: [ AppComponent ], | 49 | bootstrap: [ AppComponent ], |
49 | declarations: [ | 50 | declarations: [ |
50 | AppComponent | 51 | AppComponent, |
52 | |||
53 | MenuComponent, | ||
54 | MenuAdminComponent | ||
51 | ], | 55 | ], |
52 | imports: [ | 56 | imports: [ |
53 | BrowserModule, | 57 | BrowserModule, |