mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
15 lines
472 B
TypeScript
15 lines
472 B
TypeScript
import { Text, View } from "react-native-ui-lib";
|
|
import GroceryList from "@/components/pages/grocery/GroceryList";
|
|
import AddGroceryItem from "@/components/pages/grocery/AddGroceryItem";
|
|
import { GroceryProvider } from "@/contexts/GroceryContext";
|
|
import React from "react";
|
|
import GroceryWrapper from "@/components/pages/grocery/GroceryWrapper";
|
|
|
|
export default function Screen() {
|
|
return (
|
|
<GroceryProvider>
|
|
<GroceryWrapper />
|
|
</GroceryProvider>
|
|
);
|
|
}
|