import { SafeAreaView, StyleSheet, Text } from 'react-native'; import { FlatList } from 'react-native-gesture-handler'; import { SearchBar } from '../../../components'; import CategoryItem from '../../../components/budget/categoryItem'; import useFetch from '../../../hooks/useFetch'; export default function Page() { const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', }, text: { color: "red", fontSize: 40, } }); const {data, isLoading, reFetch} = useFetch(); return ( Expense View }> ); }