1
0
forked from fr/deguapp
deguapp/frontend/App.js

19 lines
371 B
JavaScript
Raw Normal View History

2024-05-05 17:44:42 +02:00
import { StatusBar } from "expo-status-bar";
import { StyleSheet, Text, View } from "react-native";
import { LoginForm } from "./screens/Login";
2024-05-04 00:13:58 +02:00
export default function App() {
return (
<View style={styles.container}>
2024-05-05 17:44:42 +02:00
<StatusBar style="light" />
<LoginForm />
2024-05-04 00:13:58 +02:00
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
});