UNPKG

@betterstore/react

Version:

10 lines (9 loc) 427 B
import { default as React } from 'react'; import { ShippingRate } from './form'; export default function ShippingOptionWrapper({ rate, children, onPickupPointSelected, locale, countryCode, }: { rate: ShippingRate; children: React.ReactNode; onPickupPointSelected?: (pickupPointId: string, pickupPointName: string) => void; locale?: string; countryCode?: string; }): import("react/jsx-runtime").JSX.Element;