@open-tender/ui
Version:
A component library for use with the Open Tender web app
9 lines (8 loc) • 306 B
TypeScript
import React, { ReactNode } from 'react';
import { ScreenConfig } from '../types';
export interface CheckoutContentProps {
config: ScreenConfig;
children: ReactNode;
}
declare const CheckoutContent: ({ config, children }: CheckoutContentProps) => React.JSX.Element;
export default CheckoutContent;