summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/palette-animation/palette-animation.module.ts
blob: 86745711389c35519376d95d37aefa644bf423a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { PaletteAnimationComponent } from "./palette-animation.component";


@NgModule({
    declarations: [
        PaletteAnimationComponent
    ],
    imports: [ CommonModule ],
    exports: [ PaletteAnimationComponent ]
})

export class PaletteAnimationModule {

}