frontends/reactNative/app/_layout.tsx

10 lines
189 B
TypeScript

import { Stack } from "expo-router";
export default function RootLayout() {
return (
<Stack>
<Stack.Screen name="index" options={{ title:'Hello World!'}}/>
</Stack>
);
}