42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
import { Stack } from "expo-router";
|
|
|
|
export default function Layout() {
|
|
return (
|
|
<Stack screenOptions={{ headerShown: false }}>
|
|
<Stack.Screen name="index" options={{ title: "Dashboard" }} />
|
|
<Stack.Screen name="complaints" options={{ title: "Complaints" }} />
|
|
<Stack.Screen name="coupons" options={{ title: "Coupons" }} />
|
|
<Stack.Screen name="customize-app" options={{ title: "Customize App" }} />
|
|
<Stack.Screen
|
|
name="dashboard-banners"
|
|
options={{ title: "Dashboard Banners" }}
|
|
/>
|
|
<Stack.Screen name="manage-orders" options={{ title: "Manage Orders" }} />
|
|
<Stack.Screen
|
|
name="prices-overview"
|
|
options={{ title: "Prices Overview" }}
|
|
/>
|
|
<Stack.Screen
|
|
name="product-groupings"
|
|
options={{ title: "Product Groupings" }}
|
|
/>
|
|
<Stack.Screen name="product-tags" options={{ title: "Product Tags" }} />
|
|
<Stack.Screen name="products" options={{ title: "Products" }} />
|
|
<Stack.Screen
|
|
name="rebalance-orders"
|
|
options={{ title: "Rebalance Orders" }}
|
|
/>
|
|
<Stack.Screen
|
|
name="send-notifications"
|
|
options={{ title: "Send Notifications" }}
|
|
/>
|
|
<Stack.Screen name="slots" options={{ title: "Slots" }} />
|
|
<Stack.Screen name="stores" options={{ title: "Stores" }} />
|
|
<Stack.Screen
|
|
name="user-management"
|
|
options={{ title: "User Management" }}
|
|
/>
|
|
<Stack.Screen name="vendor-snippets" options={{ title: "Vendor Snippets" }} />
|
|
</Stack>
|
|
);
|
|
}
|