Add transaction page and styling for page layout.
This commit is contained in:
31
src/app/shared/shared.module.ts
Normal file
31
src/app/shared/shared.module.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { TopbarComponent } from './topbar/topbar.component';
|
||||
import { FooterComponent } from './footer/footer.component';
|
||||
import { SidebarComponent } from './sidebar/sidebar.component';
|
||||
import { MenuSelectionDirective } from './_directives/menu-selection.directive';
|
||||
import { MenuToggleDirective } from './_directives/menu-toggle.directive';
|
||||
import {RouterModule} from '@angular/router';
|
||||
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
TopbarComponent,
|
||||
FooterComponent,
|
||||
SidebarComponent,
|
||||
MenuSelectionDirective,
|
||||
MenuToggleDirective
|
||||
],
|
||||
exports: [
|
||||
TopbarComponent,
|
||||
FooterComponent,
|
||||
SidebarComponent,
|
||||
MenuSelectionDirective
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule
|
||||
]
|
||||
})
|
||||
export class SharedModule { }
|
||||
Reference in New Issue
Block a user