-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
35 lines (25 loc) · 669 Bytes
/
App.tsx
File metadata and controls
35 lines (25 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// react query
import { QueryClientProvider, QueryClient } from "react-query";
// providers
import { Provider } from "react-redux";
import { store } from "./src/redux/store";
import FlashMessage from "react-native-flash-message";
import NewNote from "screens/Note";
// navigation
import Navigation from "./src/navigation/Navigation";
// tailwind Provider
import './output.css';
const client = new QueryClient();
const App = () => {
return (
<>
<Provider store={store}>
<QueryClientProvider client={client}>
<Navigation />
</QueryClientProvider>
</Provider>
<FlashMessage position="top"/>
</>
);
};
export default App;