Skip to content

Commit

Permalink
refactor: drop TabBar module (#7858)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Jun 20, 2024
1 parent 88a5715 commit 33ffe89
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion projects/addon-mobile/components/tab-bar/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './tab-bar';
export * from './tab-bar.component';
export * from './tab-bar.module';
export * from './tab-bar-item.component';
export * from './tab-bar-item.directive';
11 changes: 0 additions & 11 deletions projects/addon-mobile/components/tab-bar/tab-bar.module.ts

This file was deleted.

9 changes: 9 additions & 0 deletions projects/addon-mobile/components/tab-bar/tab-bar.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import {TuiTabBarComponent} from './tab-bar.component';
import {TuiTabBarItemComponent} from './tab-bar-item.component';
import {TuiTabBarItemDirective} from './tab-bar-item.directive';

export const TuiTabBar = [
TuiTabBarComponent,
TuiTabBarItemComponent,
TuiTabBarItemDirective,
] as const;

0 comments on commit 33ffe89

Please sign in to comment.