diff --git a/app/login.tsx b/app/login.tsx index 9db785c..efc0ce7 100644 --- a/app/login.tsx +++ b/app/login.tsx @@ -1,6 +1,14 @@ import { TextInput, View, StyleSheet, Button } from 'react-native' +import { useState } from 'react' export default function LoginView() { + const [email, setEmail] = useState('') + const [password, setPassword] = useState('') + + function login() { + console.log(email, password) + } + const styles = StyleSheet.create({ container: { padding: 16, @@ -14,8 +22,8 @@ export default function LoginView() { } }) return - - -