show component
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import {NgModule} from '@angular/core';
|
||||
import {CommonModule} from '@angular/common';
|
||||
import {NavigationComponent} from './navigation/navigation.component';
|
||||
import {RouterModule} from '@angular/router';
|
||||
import {FilterComponent} from './navigation/filter/filter.component';
|
||||
import {FontAwesomeModule} from '@fortawesome/angular-fontawesome';
|
||||
import {LinkComponent} from './navigation/link/link.component';
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
NavigationComponent,
|
||||
FilterComponent,
|
||||
LinkComponent
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule,
|
||||
FontAwesomeModule
|
||||
],
|
||||
exports: [
|
||||
NavigationComponent
|
||||
]
|
||||
})
|
||||
export class ApplicationFrameModule {
|
||||
}
|
||||
Reference in New Issue
Block a user