Skip to content

Commit ce89529

Browse files
committed
fix: file renaming enforcing good practices on naming conventions
1 parent 197490a commit ce89529

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/components/ui/helpCenter/index.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/**
2+
* Help Center Module - Barrel file
3+
*
4+
* This file serves as a centralized export point for all Help Center components and hooks.
5+
* It enables clean imports throughout the application by providing a single entry point
6+
* without requiring consumers to know the internal file structure.
7+
*
8+
* Usage:
9+
* import { HelpProvider, HelpButton, useHelp } from '@/components/ui/helpCenter';
10+
*/
11+
112
export { default as HelpProvider } from './HelpProvider';
213
export { useHelp } from './hooks';
314
export { default as HelpButton } from './HelpButton';

0 commit comments

Comments
 (0)