UNPKG

ng-ytl-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

14 lines (12 loc) 322 B
import { Component, HostBinding, ViewEncapsulation } from '@angular/core'; @Component({ selector : 'nz-content', encapsulation: ViewEncapsulation.None, template : ` <ng-content></ng-content> `, host: { '[class.ant-layout-content]': 'true' } }) export class NzContentComponent { }