feat: 初始提交

This commit is contained in:
siujamo
2025-12-25 16:12:01 +08:00
commit faff32475f
77 changed files with 6123 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { useAppSelector } from "@/store"
export default function HomePage() {
const user = useAppSelector((store) => store.auth.user!)
return <>Welcome to Helix, {user.fullName}</>
}