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