Projekt

Obecné

Profil

Stáhnout (518 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 7e4b4e6a mschwob
import { StatusBar } from 'expo-status-bar'
2
import { StyleSheet, Text, View } from 'react-native'
3
import LoginPage from './src/pages/LoginPage'
4 f2feda74 Schwobik
5
export default function App() {
6
  return (
7
    <View style={styles.container}>
8
      <Text>Open up App.js to start working on your app!</Text>
9
      <StatusBar style="auto" />
10 7e4b4e6a mschwob
      <LoginPage />
11 f2feda74 Schwobik
    </View>
12
  );
13
}
14
15
const styles = StyleSheet.create({
16
  container: {
17
    flex: 1,
18
    backgroundColor: '#fff',
19
    alignItems: 'center',
20
    justifyContent: 'center',
21
  },
22
});