Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled
19 lines
417 B
TypeScript
19 lines
417 B
TypeScript
/**
|
|
* Auth layout - for login/pairing screens
|
|
*/
|
|
import { Stack } from 'expo-router';
|
|
import { colors } from '@/lib/theme';
|
|
|
|
export default function AuthLayout() {
|
|
return (
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: false,
|
|
contentStyle: { backgroundColor: colors.background.dark },
|
|
}}
|
|
>
|
|
<Stack.Screen name="pair" options={{ title: 'Connect to Server' }} />
|
|
</Stack>
|
|
);
|
|
}
|