Files
nextjs-shopify-products/app/providers.tsx
2026-04-19 11:15:11 -04:00

13 lines
258 B
TypeScript

'use client';
import React from 'react';
import { ShopifyProvider } from '@/contexts/shopify-context';
export function Providers({ children }: { children: React.ReactNode }) {
return (
<ShopifyProvider>
{children}
</ShopifyProvider>
);
}