diff options
author | 2022-05-22 13:49:12 +0100 | |
---|---|---|
committer | 2022-05-22 13:49:12 +0100 | |
commit | 994bc43d488eefc0ee39f39dd7fae5515322b17b (patch) | |
tree | 64872194dbcc1112f1850dd94fd4c3185c1a6d6f /components/Login.jsx | |
parent | 853aefca82243a574e3fd8d5e5c7270355ba0cdb (diff) | |
download | notes_mobile-994bc43d488eefc0ee39f39dd7fae5515322b17b.tar.gz notes_mobile-994bc43d488eefc0ee39f39dd7fae5515322b17b.tar.bz2 notes_mobile-994bc43d488eefc0ee39f39dd7fae5515322b17b.zip |
move api & helpers to utils
Diffstat (limited to 'components/Login.jsx')
-rw-r--r-- | components/Login.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/Login.jsx b/components/Login.jsx index 8b42913..db4b15b 100644 --- a/components/Login.jsx +++ b/components/Login.jsx @@ -1,6 +1,6 @@ import { StyleSheet, Text, TextInput, Pressable, View } from 'react-native' import { useState } from 'react' -import { handleLogin } from '../helpers' +import { handleLogin } from '../utils/helpers' const Login = ({ setSession, showError }) => { const [email, setEmail] = useState(''); |