'use client';
import React from 'react';
// local link - plain anchor
import { useShopifyCart } from '~/editor/hooks/use-shopify-cart';
import config from '~/editor/lib/config.json';
const CartIcon: React.FC = () => {
const { toggleCart, itemCount } = useShopifyCart();
return (
);
};
const Header: React.FC = () => {
return (
);
};
export default Header;