aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/buttons/buttons.module.ts
blob: 5c6bdc800659ab55e411a0099b84e7f9684fbf25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { NgModule } from "@angular/core";
import { ButtonComponent } from "./button.component";
import { CommonModule } from "@angular/common";
import { SvgIconModule } from './../svg-icon/svg-icon.module';
import { ButtonFileOpenerComponent } from './button-file-opener.component';

@NgModule({
    declarations: [
        ButtonComponent,
        ButtonFileOpenerComponent
    ],
    imports: [
        CommonModule,
        SvgIconModule
    ],
    exports: [
        ButtonComponent,
        ButtonFileOpenerComponent
    ],
})
export class ButtonsModule {

}