@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
11 lines (10 loc) • 330 B
TypeScript
import { ScreenConfig } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const DisabledModal: ({ children, message }: {
children: ({ config, disableText }: {
config: ScreenConfig;
disableText?: string;
}) => ReactNode;
message?: string;
}) => ReactNode;
export default DisabledModal;