feat: team page

This commit is contained in:
2024-11-14 17:58:19 +07:00
parent 7a00992ff9
commit 71dfbd5db3
23 changed files with 790 additions and 67 deletions
+12
View File
@@ -55,6 +55,18 @@ export default function Layout() {
),
}}
/>
<Drawer.Screen
name="team"
options={
{
title: "Team",
hidden: !teamId,
drawerIcon: ({ size, color }) => (
<Icons name="account-group" size={size} color={color} />
),
} as DrawerNavigationOptions
}
/>
</Drawer>
</GestureHandlerRootView>
);
+3
View File
@@ -0,0 +1,3 @@
import TeamPage from "@/pages/team/page";
export default TeamPage;