14 lines
312 B
JavaScript
14 lines
312 B
JavaScript
import { Drawer } from "expo-router/drawer";
|
|
|
|
export default function AccountDrawerLayout() {
|
|
return (
|
|
<Drawer>
|
|
<Drawer.Screen name="account" options={{ title: "Konto" }} />
|
|
<Drawer.Screen
|
|
name="userNotices"
|
|
options={{ title: "Moje ogłoszenia" }}
|
|
/>
|
|
</Drawer>
|
|
);
|
|
}
|