feat(WIP): processing 건국, 다른 메뉴 UI 통일

- lazy loading은 의미가 없으므로 롤백
This commit is contained in:
2021-12-19 22:50:15 +09:00
parent c47f8dbba3
commit 78d95048d5
14 changed files with 235 additions and 171 deletions
+2 -2
View File
@@ -76,7 +76,7 @@ const app: App<Element> | undefined = (function () {
console.error(`${moduleName}${groupName}에 없음`);
return undefined;
}
return createApp(GeneralActions[moduleName]());
return createApp(GeneralActions[moduleName]);
}
if (groupName == 'Nation') {
const moduleName = entryInfo[1];
@@ -84,7 +84,7 @@ const app: App<Element> | undefined = (function () {
console.error(`${moduleName}${groupName}에 없음`);
return undefined;
}
return createApp(NationActions[moduleName]());
return createApp(NationActions[moduleName]);
}
console.error('알수')