alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
14 lines (13 loc) • 304 B
TypeScript
/**
* A single pre-assignment entry
* @author Gabe Abrams
*/
import React from 'react';
import User from '../../shared/types/User';
type Props = {
student: User;
groupNum: number;
onRemove: () => void;
};
declare const PreAssignmentItem: React.FC<Props>;
export default PreAssignmentItem;