This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
interaktive-systeme/app/_layout.tsx
2023-12-08 14:51:05 +01:00

12 lines
No EOL
253 B
TypeScript

import { Slot } from 'expo-router'
import React from 'react'
import { AuthProvider } from './contexts/AuthContext'
export default function _layout() {
console.log("layout called")
return (
<AuthProvider>
<Slot />
</AuthProvider>
)
}