sidenav-drawer.component.ts 356B

12345678910111213141516
  1. import { Component, OnInit, HostBinding, Input } from '@angular/core';
  2. @Component({
  3. selector: 'sidenav-drawer',
  4. templateUrl: './sidenav-drawer.component.html',
  5. styleUrls: ['./sidenav-drawer.component.css'],
  6. host:{
  7. 'class': 'sidenav-drawer-container'
  8. }
  9. })
  10. export class SidenavDrawerComponent {
  11. @Input()
  12. public urlBackground : string;
  13. }