21 lines
355 B
TypeScript
21 lines
355 B
TypeScript
/**
|
|
* Sample React Native App
|
|
* https://github.com/facebook/react-native
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import React from 'react';
|
|
import Navigation from './src/navigation';
|
|
import {ThemeProvider} from './src/contexts/ThemeContext';
|
|
|
|
function App(): JSX.Element {
|
|
return (
|
|
<ThemeProvider>
|
|
<Navigation />
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
export default App;
|