UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

17 lines (16 loc) 497 B
/** * Main component which manages the check-in flow. * Wraps all subsequent steps in a body. * Should be opened on a button click. * @author Benedikt Arnarsson */ import React from 'react'; import AssignToGroups from './shared/types/AssignToGroups'; import CheckInUIProps from './types/CheckInUIProps'; type Props = (CheckInUIProps & { onClose: () => void; assignToGroups: AssignToGroups; subText?: string; }); declare const CheckInUi: React.FC<Props>; export default CheckInUi;