basic layout created and welcome onboarding screen implemented
This commit is contained in:
committed by
GitHub
parent
a72a83ebe3
commit
77030fd4c2
@@ -0,0 +1,13 @@
|
||||
import { Stack } from "expo-router";
|
||||
|
||||
const AuthLayout = () => {
|
||||
return (
|
||||
<Stack>
|
||||
<Stack.Screen name="welcome" options={{ headerShown: false }} />
|
||||
<Stack.Screen name="sign-up" options={{ headerShown: false }} />
|
||||
<Stack.Screen name="sign-in" options={{ headerShown: false }} />
|
||||
</Stack>
|
||||
);
|
||||
};
|
||||
|
||||
export default AuthLayout;
|
||||
Reference in New Issue
Block a user