import React from "react"; import { useState } from "react"; import { View, TextInput } from "react-native"; import Button from "../components/Buttons/Button"; import { login } from "../thunks/user.thunk"; export const LogIn = () => { const [username, setUsername] = useState() const [password, setPassword] = useState() const [error, setError] = useState() return (