Files
lst_v3/lstMobile/src/app/_layout.tsx
blake 82f8369640
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 2m33s
refactor(scanner): more basic work to get the scanner just running
2026-04-19 17:20:57 -05:00

15 lines
318 B
TypeScript

import { Stack } from "expo-router";
import { StatusBar } from "expo-status-bar";
export default function RootLayout() {
return (
<>
<StatusBar style="dark" />
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="index" />
{/* <Stack.Screen name="(tabs)" /> */}
</Stack>
</>
);
}