alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
13 lines (12 loc) • 324 B
TypeScript
/**
* Modal for checking students.
* @author Benedikt Arnarsson
*/
import React from 'react';
import OccurrenceBasicInfo from '../../shared/types/OccurrenceBasicInfo';
type Props = {
occurrence: OccurrenceBasicInfo;
subText?: string;
};
declare const CheckInQrCard: React.FC<Props>;
export default CheckInQrCard;