forked from cemaden-educacao/WPD-MobileApp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
345 B
18 lines
345 B
import React from "react";
|
|
import { StyleSheet, View, Text } from "react-native";
|
|
|
|
export default function LoginScreen() {
|
|
return (
|
|
<View style={styles.containter}>
|
|
<Text>Login</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
containter: {
|
|
flex: 1,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
});
|