refactor: relocate components to app directory structure

This commit is contained in:
2026-06-09 14:43:10 +08:00
parent f060301c24
commit cda55c8f9b
61 changed files with 19 additions and 27 deletions
@@ -0,0 +1,13 @@
"use client";
/**
* Splash 加载状态
*
* 原始 Dart: lib/ui/splash/widgets/splash_loading.dart
*
* 包装 `<LoadingIndicator>`splash 阶段可能用于等待 auth 检查。
*/
import { LoadingIndicator } from "@/app/_components/core/loading-indicator";
export function SplashLoading() {
return <LoadingIndicator size={48} color="var(--color-accent)" />;
}