@open-tender/ui
Version:
A component library for use with the Open Tender web app
10 lines (9 loc) • 359 B
TypeScript
import React from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface CheckoutPromoCodeProps {
config: ScreenConfig;
handlers: Handlers;
promoCode: string | null;
}
declare const CheckoutPromoCodetView: ({ config, handlers, promoCode }: CheckoutPromoCodeProps) => React.JSX.Element;
export default CheckoutPromoCodetView;