project setup

This commit is contained in:
Sone
2025-11-02 10:08:56 +01:00
commit 568838003e
174 changed files with 27100 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { Redirect } from "expo-router";
const Dashboard = () => {
return <Redirect href="/dashboard/user-dashboard" />;
};
export default Dashboard;
@@ -0,0 +1,7 @@
import UserDashboardPage from "@/components/features/dashboard/UserDashboardPage";
const UserDashboard = () => {
return <UserDashboardPage />;
};
export default UserDashboard;