-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
33 lines (28 loc) · 1.03 KB
/
index.js
File metadata and controls
33 lines (28 loc) · 1.03 KB
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
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Moepictures - A cute and moe anime image board ❤ *
* Copyright © 2026 Moebytes <moebytes.com> *
* Licensed under CC BY-NC 4.0. See license.txt for details. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
import {AppRegistry, LogBox} from "react-native"
import {SafeAreaProvider} from "react-native-safe-area-context"
import {ActionSheetProvider} from "@expo/react-native-action-sheet"
import {GestureHandlerRootView} from "react-native-gesture-handler"
import {Provider} from "react-redux"
import {name} from "./app.json"
import {Buffer} from "buffer"
import store from "./store"
import App from "./App"
global.Buffer = Buffer
LogBox.ignoreAllLogs()
const Root = () => (
<Provider store={store}>
<SafeAreaProvider>
<ActionSheetProvider>
<GestureHandlerRootView>
<App/>
</GestureHandlerRootView>
</ActionSheetProvider>
</SafeAreaProvider>
</Provider>
)
AppRegistry.registerComponent(name, () => Root)