aboutsummaryrefslogtreecommitdiffstats
path: root/components/Login.jsx
diff options
context:
space:
mode:
authorGravatar piotrruss <mail@pruss.it> 2022-05-22 13:49:12 +0100
committerGravatar piotrruss <mail@pruss.it> 2022-05-22 13:49:12 +0100
commit994bc43d488eefc0ee39f39dd7fae5515322b17b (patch)
tree64872194dbcc1112f1850dd94fd4c3185c1a6d6f /components/Login.jsx
parent853aefca82243a574e3fd8d5e5c7270355ba0cdb (diff)
downloadnotes_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.jsx2
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('');