import {type FetcherWithComponents} from '@remix-run/react'; import {CartForm, type OptimisticCartLineInput} from '@shopify/hydrogen'; export function AddToCartButton({ analytics, children, disabled, lines, onClick, }: { analytics?: unknown; children: React.ReactNode; disabled?: boolean; lines: Array; onClick?: () => void; }) { return ( {(fetcher: FetcherWithComponents) => ( <> )} ); }