Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Linnea Samila / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • sidebar
  • sidebar.component.ts
  • Linnea Samila's avatar
    renamed left-menu to sidebar · 2bccadf0
    Linnea Samila committed Apr 02, 2018
    2bccadf0 Browse Files
sidebar.component.ts 399 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import {Component, OnInit, Input} from '@angular/core';
import {MenuGroup} from '../models/menu-group.model';

@Component({
  selector: 'sidebar',
  templateUrl: './sidebar.component.html',
  styleUrls: ['./sidebar.component.scss']
})
export class SidebarComponent implements OnInit {

  @Input()
  menu: MenuGroup[];

  @Input()
  styleClass: string;

  constructor() {

  }

  ngOnInit() {
  }

}