Projekt

Obecné

Profil

Stáhnout (790 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 b5599ba1 Fantič
2 7e4b4e6a mschwob
import { StyleSheet, Text, View } from 'react-native'
3 97deff21 Fantič
import { NativeBaseProvider, Box, Center, VStack } from "native-base"
4 5ed9692c Schwobik
import { Provider } from "react-redux"
5
import store from "./src/stores/store"
6 b5599ba1 Fantič
import ItemViewPage from './src/pages/ItemViewPage'
7 97deff21 Fantič
import LoginPage from './src/pages/LoginPage'
8 f2feda74 Schwobik
9
export default function App() {
10
  return (
11 97deff21 Fantič
    <Provider store={store}>
12
      <NativeBaseProvider>
13 c03fd43c Fantič
          {/* TODO: remove placeholder pro header / nav */}
14 852de08e Fantič
          <Center w="100%" h="40" rounded="md" background="success.300"/>
15 88d2df9a Fantič
          <ItemViewPage itemId={'PrgA-811'} />
16 97deff21 Fantič
      </NativeBaseProvider>
17
    </Provider>
18 dfda8907 Schwobik
  )
19 f2feda74 Schwobik
}
20
21
const styles = StyleSheet.create({
22
  container: {
23
    flex: 1,
24
    backgroundColor: '#fff',
25
    alignItems: 'center',
26
    justifyContent: 'center',
27
  },
28
});