mirror of
https://github.com/urosran/cally.git
synced 2025-07-09 22:57:16 +00:00
13 lines
201 B
TypeScript
13 lines
201 B
TypeScript
import React from 'react';
|
|
|
|
import {Drawer} from "expo-router/drawer";
|
|
|
|
export default function TabLayout() {
|
|
return (
|
|
<Drawer
|
|
screenOptions={{
|
|
headerShown: true,
|
|
}}/>
|
|
);
|
|
}
|