mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-06-29 04:35:13 +00:00
Add sidebar component that is ready to be designed and instrumented
This commit is contained in:
1
src/app/sidebar/sidebar.component.html
Executable file
1
src/app/sidebar/sidebar.component.html
Executable file
@ -0,0 +1 @@
|
||||
<div> IDE </div>
|
6
src/app/sidebar/sidebar.component.scss
Executable file
6
src/app/sidebar/sidebar.component.scss
Executable file
@ -0,0 +1,6 @@
|
||||
@import "../../assets/scss/variables.scss";
|
||||
|
||||
.tfw-webide-pin{
|
||||
|
||||
|
||||
}
|
15
src/app/sidebar/sidebar.component.ts
Normal file
15
src/app/sidebar/sidebar.component.ts
Normal 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() {
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user