10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
|
|
import { Stack } from 'expo-router';
|
||
|
|
|
||
|
|
export default function RootLayout() {
|
||
|
|
return (
|
||
|
|
<Stack>
|
||
|
|
<Stack.Screen name="index" />
|
||
|
|
</Stack>
|
||
|
|
);
|
||
|
|
}
|