25 lines
475 B
TypeScript
25 lines
475 B
TypeScript
|
|
// Domain Components - Business-specific components
|
||
|
|
|
||
|
|
// Auth components
|
||
|
|
export * from './auth';
|
||
|
|
|
||
|
|
// Dashboard components
|
||
|
|
export * from './dashboard';
|
||
|
|
|
||
|
|
// Inventory components
|
||
|
|
export * from './inventory';
|
||
|
|
|
||
|
|
// Production components
|
||
|
|
export * from './production';
|
||
|
|
|
||
|
|
// Sales components
|
||
|
|
export * from './sales';
|
||
|
|
|
||
|
|
// Forecasting components
|
||
|
|
export * from './forecasting';
|
||
|
|
|
||
|
|
// Analytics components
|
||
|
|
export * from './analytics';
|
||
|
|
|
||
|
|
// Onboarding components
|
||
|
|
export * from './onboarding';
|