From 34b8c1f962a5c835351dc6f4369757259998af16 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 28 Sep 2024 22:19:31 +0530 Subject: Finish up app menu + fix drag interaction --- App.tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'App.tsx') diff --git a/App.tsx b/App.tsx index 1852a04..dd4cdd8 100644 --- a/App.tsx +++ b/App.tsx @@ -2,14 +2,17 @@ import React from 'react'; import {SafeAreaView} from 'react-native'; import {GestureHandlerRootView} from 'react-native-gesture-handler'; import {View} from './src/View'; +import {Provider as JotaiProvider} from 'jotai'; const App: React.FC = () => { return ( - - - - - + + + + + + + ); }; -- cgit v1.3.1