重构项目结构,删除未使用的组件和文件,添加主页和模态页实现

This commit is contained in:
2026-03-09 07:17:51 +07:00
parent 22162981e2
commit 283b29f9a2
25 changed files with 108 additions and 826 deletions

5
app/index.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { HomeScreen } from "@/features/home/screens/home-screen";
export default function IndexRoute() {
return <HomeScreen />;
}