Files
myeasycms-v2/apps/web/app/loading.tsx
giancarlo eea6f8121a Enable suspense mode for i18n library
The changes introduce suspense mode in the i18n settings, waiting until all languages are loaded. The loading state now shows a global loading
2024-04-16 21:46:18 +08:00

6 lines
143 B
TypeScript

import { GlobalLoader } from '@kit/ui/global-loader';
export default function Loading() {
return <GlobalLoader displaySpinner={false} />;
}