'use client'; import React from 'react'; import { Link } from 'react-router'; 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;