ngx-eagle
Version:
UI component infrastructure and Design components for mobile and desktop Angular web applications.
11 lines (9 loc) • 319 B
text/typescript
import { NgModule } from '@angular/core';
import { TabComponent } from './tab/tab.component';
import { TabGroupComponent } from './tab-group/tab-group.component';
const COMPONENTS = [TabComponent, TabGroupComponent];
({
imports: [COMPONENTS],
exports: [COMPONENTS],
})
export class TabModule {}