UNPKG

ngx-eagle

Version:

UI component infrastructure and Design components for mobile and desktop Angular web applications.

11 lines (9 loc) 319 B
import { NgModule } from '@angular/core'; import { TabComponent } from './tab/tab.component'; import { TabGroupComponent } from './tab-group/tab-group.component'; const COMPONENTS = [TabComponent, TabGroupComponent]; @NgModule({ imports: [COMPONENTS], exports: [COMPONENTS], }) export class TabModule {}