Files
audio-app/App.tsx

18 lines
430 B
TypeScript

import { NavigationContainer } from "@react-navigation/native";
import React from "react";
import { enableScreens } from "react-native-screens";
import AuthGate from "./src/navigation/AuthGate";
import { AuthProvider } from "./src/store/auth";
enableScreens();
export default function App() {
return (
<AuthProvider>
<NavigationContainer>
<AuthGate />
</NavigationContainer>
</AuthProvider>
);
}