Skip to main content

BreakoutRoomsModeAssignment

const BreakoutRoomsModeAssignment: React.FC<{
headerText: string;
nextButtonText: string;
initialAssignmentMode: BreakoutRoomAssignmentMode;
assignmentModeLabel: string;
assignmentModeAutomaticallyLabel: string;
assignmentModeAutomaticallyDescription: string;
assignmentModeManuallyLabel: string;
assignmentModeManuallyDescription: string;
amountOfRoomsLabel: string;
decreaseAmountOfRoomsLabel: string;
increaseAmountOfRoomsLabel: string;
initialAmountOfRooms?: number;
minAmountOfRooms?: number;
maxAmountOfRooms?: number;
onNextClick: ({
assignmentMode,
amountOfRooms,
}) => void;
onClosePanel: () => void;
}>;