UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

11 lines (10 loc) 401 B
import { CustomerIdentify } from '@open-tender/types'; import React from 'react'; import { Handlers, ScreenConfig } from '../types'; export interface SignInCheckoutProps { config: ScreenConfig; handlers: Handlers; customer?: CustomerIdentify | null; } declare const SignInCheckout: ({ config, handlers, customer }: SignInCheckoutProps) => React.JSX.Element; export default SignInCheckout;