UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

19 lines (18 loc) 658 B
/** * Page for pre-assigning students to groups. * @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; oldGroups: StudentGroupAssignment[]; onSubmit: (preAssignments: StudentGroupAssignment[]) => void; }; declare const PreAssign: React.FC<Props>; export default PreAssign;