alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
21 lines (20 loc) • 696 B
TypeScript
/**
* Page for selecting GrouperAlgorithm,
* i.e. picking between max number of groups
* or max group size.
* @author Benedikt Arnarsson
*/
import React from 'react';
import { StudentGroupAssignment } from 'dce-live-grouper';
import CheckInUIProps from '../../types/CheckInUIProps';
import MMDDYY from '../../shared/types/MMDDYY';
import OccurrenceGrouperInfo from '../../shared/types/OccurrenceGrouperInfo';
type Props = {
checkInProps: CheckInUIProps;
occurrenceDate: MMDDYY;
occurrenceGrouperInfo: OccurrenceGrouperInfo;
preAssignments: StudentGroupAssignment[];
onSubmit: () => void;
};
declare const GrouperSettings: React.FC<Props>;
export default GrouperSettings;