alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
19 lines (18 loc) • 581 B
TypeScript
/**
* Create a pre-assignment pairing (student + group number)
* @author Gabe Abrams
*/
import React from 'react';
import User from '../../shared/types/User';
type Props = {
students: User[];
onCancel: () => void;
/**
* Handler to call when user is done creating the pre-assignment
* @param studentId the id of the student to assign
* @param groupNum the group number to assign the student to
*/
onDone: (studentId: number, groupNum: number) => void;
};
declare const CreatePreAssignment: React.FC<Props>;
export default CreatePreAssignment;