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

9 lines (8 loc) 315 B
import { SignInButtonProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const SignInButton: ({ navigate, children, pathname }: { pathname: string; navigate: (route: string) => void; children: (props: SignInButtonProps) => ReactNode; }) => ReactNode; export default SignInButton;