15 lines
No EOL
273 B
TypeScript
15 lines
No EOL
273 B
TypeScript
import { Stack } from 'expo-router';
|
|
|
|
export default function AddressesLayout() {
|
|
return (
|
|
<Stack>
|
|
<Stack.Screen
|
|
name="index"
|
|
options={{
|
|
title: 'My Addresses',
|
|
headerShown: true,
|
|
}}
|
|
/>
|
|
</Stack>
|
|
);
|
|
} |