Add sidebar component that is ready to be designed and instrumented

This commit is contained in:
Gabor PEK
2018-04-20 09:19:42 +02:00
committed by Kristóf Tóth
parent 97d1a58fbf
commit b460c429e6
13 changed files with 169 additions and 68 deletions

View File

@ -0,0 +1 @@
<div> IDE </div>

View File

@ -0,0 +1,6 @@
@import "../../assets/scss/variables.scss";
.tfw-webide-pin{
}

View File

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-sidebar',
templateUrl: './sidebar.component.html',
styleUrls: ['./sidebar.component.scss']
})
export class SidebarComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}