This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
p61-project/app/(pages)/_layout.tsx

8 lines
112 B
TypeScript
Raw Normal View History

import { Slot } from "expo-router"
2024-02-16 22:51:50 +01:00
const Layout: React.FC = () => {
return <Slot />
2024-02-16 22:51:50 +01:00
}
export default Layout