UNPKG

@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

8 lines (7 loc) 254 B
import { SignUpProps, Handlers } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const SignUp: ({ handlers, children }: { handlers: Handlers; children: (props: SignUpProps) => ReactNode; }) => ReactNode; export default SignUp;