diff --git a/app/(auth)/grocery/index.tsx b/app/(auth)/grocery/index.tsx index 8505b86..82f41b3 100644 --- a/app/(auth)/grocery/index.tsx +++ b/app/(auth)/grocery/index.tsx @@ -2,15 +2,18 @@ import { ScrollView } from "react-native"; import { Button, Text, View } from "react-native-ui-lib"; import Octicons from "@expo/vector-icons/Octicons"; import GroceryList from "@/components/pages/grocery/GroceryList"; +import AddGroceryItem from "@/components/pages/grocery/AddGroceryItem"; +import { useAuthContext } from "@/contexts/AuthContext"; export default function Screen() { return ( - + + Welcome to your grocery list! - + X approved items @@ -20,8 +23,8 @@ export default function Screen() {