| 12345678910111213141516 |
- import { Component, OnInit, HostBinding, Input } from '@angular/core';
-
- @Component({
- selector: 'sidenav-drawer',
- templateUrl: './sidenav-drawer.component.html',
- styleUrls: ['./sidenav-drawer.component.css'],
- host:{
- 'class': 'sidenav-drawer-container'
- }
- })
- export class SidenavDrawerComponent {
-
- @Input()
- public urlBackground : string;
-
- }
|