UNPKG

@open-tender/store

Version:

A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API

8 lines (7 loc) 351 B
import { CartUpsellItemProps, CartUpsellsProps } from '@open-tender/ui'; import React, { ReactNode } from 'react'; declare const CartUpsells: ({ children, CartUpsellItemView }: { children: (props: CartUpsellsProps) => ReactNode; CartUpsellItemView: (props: CartUpsellItemProps) => ReactNode; }) => React.ReactNode; export default CartUpsells;