valor-software/ng2-bootstrap

View on GitHub
demo/src/app/docs/demo-section-components/demo-top-section/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @author ng-team
 * @copyright ng-bootstrap
 */
// todo: add configuration of base url for source code
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { DemoTopSectionComponent } from './demo-top-section.component';

export { DemoTopSectionComponent } from './demo-top-section.component';

@NgModule({
  declarations: [
    DemoTopSectionComponent
  ],
  imports: [
    CommonModule
  ],
  exports: [
    DemoTopSectionComponent
  ],
  providers: []
})
export class DemoTopSectionComponentModule {}