import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { WchNgComponentsModule } from '@ibm-wch-sdk/ng';

import { {{{layoutClassName}}} } from '{{{layoutFileName}}}';

@NgModule({
    /**
    * TODO explicitly add those modules that are used by the layout
    */
    imports: [
        CommonModule,
        WchNgComponentsModule
    ],
    declarations: [{{{layoutClassName}}}],
    exports: [{{{layoutClassName}}}],
    entryComponents: [{{{layoutClassName}}}]
})
export class {{{moduleClassName}}} {
}
