diff options
Diffstat (limited to 'components/List.jsx')
-rw-r--r-- | components/List.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/List.jsx b/components/List.jsx index 8003187..3e4e11c 100644 --- a/components/List.jsx +++ b/components/List.jsx @@ -1,11 +1,11 @@ import { StyleSheet, Text } from 'react-native' import SwipeableFlatList from 'react-native-swipeable-list' import { useState, useEffect } from 'react' -import { getList } from '../api' +import { getList } from '../utils/api' import Note from './Note' import Menu from './Menu' import RemoveNoteButton from './RemoveNoteButton' -import { handleRemove } from "../helpers"; +import { handleRemove } from "../utils/helpers"; const List = ({ session, setSession, showError, setEdit }) => { const [list, setList] = useState() |