We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 197490a commit ce89529Copy full SHA for ce89529
src/components/ui/helpCenter/index.ts
@@ -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
+
12
export { default as HelpProvider } from './HelpProvider';
13
export { useHelp } from './hooks';
14
export { default as HelpButton } from './HelpButton';
0 commit comments