@open-tender/store
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API
12 lines (11 loc) • 562 B
TypeScript
import { ErrorMessageProps, KeypadProps, SignInPhoneProps, SignUpProps } from '@open-tender/ui';
import React, { ReactNode } from 'react';
declare const SignInPhone: ({ close, callback, children, KeypadView, SignUpView, ErrorMessageView }: {
close: () => void;
callback?: () => void;
children: (props: SignInPhoneProps) => ReactNode;
KeypadView: (props: KeypadProps) => ReactNode;
SignUpView: (props: SignUpProps) => ReactNode;
ErrorMessageView: (props: ErrorMessageProps) => ReactNode;
}) => React.ReactNode;
export default SignInPhone;