Login bug fix
This commit is contained in:
9
src/app/dev/event/main/loading.tsx
Normal file
9
src/app/dev/event/main/loading.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import ComponentGlobal_LoadingPage from "@/app_modules/component_global/loading_page";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<ComponentGlobal_LoadingPage height="100%"/>
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/event/splash/loading.tsx
Normal file
9
src/app/dev/event/splash/loading.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import ComponentGlobal_LoadingPage from "@/app_modules/component_global/loading_page";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<ComponentGlobal_LoadingPage height="100vh"/>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -1,5 +1,8 @@
|
||||
import { Event_SplashScreen } from "@/app_modules/event";
|
||||
|
||||
export default async function Page() {
|
||||
// await new Promise((a, b) => {
|
||||
// setTimeout(a, 1000);
|
||||
// });
|
||||
return <Event_SplashScreen />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user