The changes introduce suspense mode in the i18n settings, waiting until all languages are loaded. The loading state now shows a global loading
6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
import { GlobalLoader } from '@kit/ui/global-loader';
|
|
|
|
export default function Loading() {
|
|
return <GlobalLoader displaySpinner={false} />;
|
|
}
|