import * as React from 'react'; import { NavigationContainer } from '@react-navigation/native'; import { View } from 'react-native'; import RootNavigator from './RootNavigator'; import { useTheme } from '../theme/ThemeProvider'; const linking = { prefixes: ['https://meliorence.github.io/react-native-render-html'] }; export default function Navigation() { const theme = useTheme(); return ( ); }