Files
cozsweet-frontend-nextjs/src/app/splash/components/splash-loading.tsx
T
admin 6e51cb7d16 Refactor: Remove original Dart references from comments across multiple files
- Updated comments in various components, schemas, and repositories to remove references to original Dart files.
- Ensured consistency in documentation while maintaining the context of the code.
2026-06-29 11:31:21 +08:00

13 lines
304 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Splash 加载状态
*
*
*
* 包装 `<LoadingIndicator>`splash 阶段可能用于等待 auth 检查。
*/
import { LoadingIndicator } from "@/app/_components/core/loading-indicator";
export function SplashLoading() {
return <LoadingIndicator size={48} color="var(--color-accent)" />;
}