Added sidebar

This commit is contained in:
2019-01-15 02:45:38 +05:30
parent a8b7eb1c86
commit fc3c4e1542
14 changed files with 683 additions and 25 deletions

View File

@@ -1,14 +1,18 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { SidebarComponent } from './components/l2/sidebar/sidebar.component';
@NgModule({
declarations: [
AppComponent
AppComponent,
SidebarComponent
],
imports: [
BrowserModule
BrowserModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]