Add transaction page and styling for page layout.

This commit is contained in:
Spencer Ofwiti
2020-11-04 15:36:30 +03:00
parent cbe51520fa
commit b9734e60ad
37 changed files with 942 additions and 536 deletions

View 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 { }