From e9c7a932900b8147e0d296839f74616fadde0baf Mon Sep 17 00:00:00 2001 From: giancarlo Date: Fri, 29 Mar 2024 18:22:01 +0800 Subject: [PATCH] Add loading component using GlobalLoader Implemented a new loading component in the 'join' directory. The new file, loading.tsx, exports the GlobalLoader from '@kit/ui/global-loader'. This should help improve the user experience during loading times across the web app. --- apps/web/app/join/loading.tsx | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 apps/web/app/join/loading.tsx diff --git a/apps/web/app/join/loading.tsx b/apps/web/app/join/loading.tsx new file mode 100644 index 000000000..4ea53181d --- /dev/null +++ b/apps/web/app/join/loading.tsx @@ -0,0 +1,3 @@ +import { GlobalLoader } from '@kit/ui/global-loader'; + +export default GlobalLoader;