UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

14 lines (13 loc) 468 B
/** * First modal of the check-in flow. * Checks the Occurrence backend and either goes to CheckInModal or starts setup. * @author Benedikt Arnarsson */ import React from 'react'; import CheckInUIProps from '../../types/CheckInUIProps'; import MMDDYY from '../../shared/types/MMDDYY'; type Props = (CheckInUIProps & { onSubmit: (mmddyy: MMDDYY, occIsStarted?: boolean) => void; }); declare const LoadOccurrence: React.FC<Props>; export default LoadOccurrence;