Projekt

Obecné

Profil

Stáhnout (622 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 7e4b4e6a mschwob
import { StatusBar } from 'expo-status-bar'
2
import { StyleSheet, Text, View } from 'react-native'
3 5c86e446 mschwob
import { NativeBaseProvider, Box } from "native-base"
4 7e4b4e6a mschwob
import LoginPage from './src/pages/LoginPage'
5 5ed9692c Schwobik
import { Provider } from "react-redux"
6
import store from "./src/stores/store"
7 f2feda74 Schwobik
8
export default function App() {
9
  return (
10 5ed9692c Schwobik
      <Provider store={store}>
11
          <NativeBaseProvider>
12
            <LoginPage />
13
          </NativeBaseProvider>
14
      </Provider>
15 dfda8907 Schwobik
  )
16 f2feda74 Schwobik
}
17
18
const styles = StyleSheet.create({
19
  container: {
20
    flex: 1,
21
    backgroundColor: '#fff',
22
    alignItems: 'center',
23
    justifyContent: 'center',
24
  },
25
});