sidenav-content.component.ts 223B

12345678910
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'sidenav-content',
  4. template: '<ng-content></ng-content>',
  5. host:{
  6. 'class': 'sidenav-content'
  7. }
  8. })
  9. export class SidenavContentComponent {}