ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
16 lines (13 loc) • 559 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { SCROLL_SERVICE_PROVIDER } from '../core/scroll/nz-scroll.service';
import { NzAnchorLinkComponent } from './nz-anchor-link.component';
import { NzAnchorComponent } from './nz-anchor.component';
({
declarations: [ NzAnchorComponent, NzAnchorLinkComponent ],
exports : [ NzAnchorComponent, NzAnchorLinkComponent ],
imports : [ CommonModule ],
providers : [ SCROLL_SERVICE_PROVIDER ]
})
export class NzAnchorModule {
}