9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
import { Stack } from 'expo-router'
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<Stack screenOptions={{ headerShown: false }}>
|
|
<Stack.Screen name="index" options={{ title: 'Send Notifications' }} />
|
|
</Stack>
|
|
)
|
|
}
|