mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-17 02:16:43 +00:00
- add analytics/index.ts aggregating chart components - add components/index.ts as main entry point
19 lines
460 B
TypeScript
19 lines
460 B
TypeScript
/**
|
|
* Components Main Barrel Export
|
|
*
|
|
* Aggregates all component domain exports.
|
|
* Note: ui/ (shadcn) components are imported directly, not through this barrel.
|
|
*/
|
|
|
|
// Domain exports
|
|
export * from './account';
|
|
export * from './analytics';
|
|
export * from './cliproxy';
|
|
export * from './copilot';
|
|
export * from './health';
|
|
export * from './layout';
|
|
export * from './monitoring';
|
|
export * from './profiles';
|
|
export * from './setup';
|
|
export * from './shared';
|