CSIT Fix for SDC-2585
[sdc.git] / catalog-ui / src / app / ng2 / components / ui / palette-animation / palette-animation.module.ts
1 import { NgModule } from "@angular/core";
2 import { CommonModule } from "@angular/common";
3 import { PaletteAnimationComponent } from "./palette-animation.component";
4
5
6 @NgModule({
7     declarations: [
8         PaletteAnimationComponent
9     ],
10     imports: [ CommonModule ],
11     exports: [ PaletteAnimationComponent ]
12 })
13
14 export class PaletteAnimationModule {
15
16 }