UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

10 lines (9 loc) 334 B
import React from 'react'; import { Handlers, ScreenConfig } from '../types'; export interface IdleModalProps { config: ScreenConfig; handlers: Handlers; modalContentConfig: ScreenConfig; } declare const IdleModal: ({ config, handlers, modalContentConfig }: IdleModalProps) => React.JSX.Element; export default IdleModal;