mod-arch-shared
Version:
Shared library for modular architecture micro-frontend projects
23 lines • 744 B
JavaScript
// Export components
export * from './components';
// Export API utilities
export * from './api';
// Export hooks
export * from './hooks';
// Export context
export * from './context';
// Export utilities
export * from './utilities';
// Export types
export * from './types';
// // Import and re-export style and images
// import * as styleExports from './style';
// import * as imageExports from './images';
// export const style = styleExports;
// export const images = imageExports;
// Export style and images modules
export * as style from './style';
export * as images from './images';
// Note: Styles are exported without importing to avoid side effects
// Users should import styles explicitly when needed
//# sourceMappingURL=index.js.map