Skip to content
Permalink
00e96d158d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (15 sloc) 450 Bytes
import {NavigationContainer} from '@react-navigation/native';
import React from 'react';
import {Provider} from 'urql';
import AuthenticationSwitch from './src/navigation/AuthenticationSwitch';
import {client} from './src/utils/CreateClient';
const App: React.FC = () => {
return (
<Provider value={client}>
<NavigationContainer>
<AuthenticationSwitch />
</NavigationContainer>
</Provider>
);
};
export default App;