You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
969 B
TypeScript
30 lines
969 B
TypeScript
import { dashboardModule } from './dashboard';
|
|
import { sceneModule } from './scene';
|
|
import { applicationModule } from './application';
|
|
import { instanceModule } from './instance';
|
|
import { componentDevelopmentModule } from './componentDevelopment';
|
|
import { componentLibraryModule } from './componentLibrary';
|
|
import { compositeCompLibraryModule } from './compositeCompLibrary';
|
|
import { componentMarketModule } from './componentMarket';
|
|
|
|
export {
|
|
dashboardModule,
|
|
sceneModule,
|
|
applicationModule,
|
|
instanceModule,
|
|
componentDevelopmentModule,
|
|
componentLibraryModule,
|
|
compositeCompLibraryModule,
|
|
componentMarketModule
|
|
};
|
|
|
|
export const moduleMap = {
|
|
dashboard: dashboardModule,
|
|
scene: sceneModule,
|
|
application: applicationModule,
|
|
instance: instanceModule,
|
|
componentDevelopment: componentDevelopmentModule,
|
|
componentLibrary: componentLibraryModule,
|
|
compositeCompLibrary: compositeCompLibraryModule,
|
|
componentMarket: componentMarketModule
|
|
}; |