aboutsummaryrefslogtreecommitdiff
path: root/src/App.tsx
blob: 2e6865fdb1693ca51db523e1c6cb0b5f7eef706a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react';
import {NavigationContainer} from '@react-navigation/native';
import Routes, {AuthProvider} from './routes';

const App = () => {
  return (
    <AuthProvider>
      <NavigationContainer>
        <Routes />
      </NavigationContainer>
    </AuthProvider>
  );
};

export default App;