Commit 50b37ad9 by Aino Leppänen

added left menu module

1 parent 04696394
<left-menu [menu]="menu" styleClass="infoMenu"></left-menu> <left-menu styleClass="infoMenu"></left-menu>
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { LeftMenuComponent } from './left-menu.component';
import { RouterModule } from '@angular/router';
@NgModule({
imports: [
CommonModule,
RouterModule
],
declarations: [LeftMenuComponent],
exports : [
LeftMenuComponent
]
})
export class LeftMenuModule { }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!