sign in page ui implemented

This commit is contained in:
Sanidhya Kumar Verma
2024-08-29 16:48:31 +00:00
committed by GitHub
parent 0f18202280
commit 3e4c13d87c
4 changed files with 50 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Stack } from "expo-router";
const RootLayout = () => {
return (
<Stack>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
</Stack>
);
};
export default RootLayout;