aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/paletx/core/pxbutton/button.module.ts
blob: 019732958c85b1def5949c71a1d62f122e970be6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Created by 10190264 on 2016/12/15.
 */
import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {PlxButtonDirective} from './button.directive';

@NgModule({
  imports: [CommonModule],
  exports: [PlxButtonDirective],
  declarations: [PlxButtonDirective]
})
export class PlxButtonModule {
}