Files
ccs/ui/src/components/index.ts
T
kaitranntt b911db8b5f refactor(ui): add barrel exports for analytics and components root
- add analytics/index.ts aggregating chart components

- add components/index.ts as main entry point
2025-12-19 19:44:04 -05:00

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';