@commercelayer/react-components
Version:
The Official Commerce Layer React Components
9 lines (8 loc) • 311 B
TypeScript
import { type ReactNode, type JSX } from "react";
import { type PlaceOrderOptions } from "../../reducers/PlaceOrderReducer";
interface Props {
children: ReactNode;
options?: PlaceOrderOptions;
}
export declare function PlaceOrderContainer(props: Props): JSX.Element;
export default PlaceOrderContainer;