alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
12 lines (11 loc) • 314 B
TypeScript
import VisitServerEndpoint from './VisitServerEndpoint';
/**
* Input to the CheckInUI and starting point for constructing Occurrences.
* @author Benedikt Arnarsson
*/
type CheckInUIProps = {
courseId: number;
ihid: string;
visitServerEndpoint: VisitServerEndpoint;
};
export default CheckInUIProps;