Files
cally/app/(auth)/_layout.tsx
Milan Paunovic f2997768da init
2024-07-31 19:12:35 +02:00

13 lines
201 B
TypeScript

import React from 'react';
import {Drawer} from "expo-router/drawer";
export default function TabLayout() {
return (
<Drawer
screenOptions={{
headerShown: true,
}}/>
);
}