Function BreakoutRoomsModal

BreakoutRoomsModal component is a React functional component that manages the breakout rooms modal. It allows users to create, edit, and manage breakout rooms for participants in a meeting.

<BreakoutRoomsModal
isVisible={true}
onBreakoutRoomsClose={handleClose}
parameters={parameters}
position="topRight"
backgroundColor="#83c0e9"
/>

Properties

propTypes?: any

Ignored by React.

Only kept in types for backwards compatibility. Will be removed in a future major release.

displayName?: string

Used in debugging messages. You might want to set it explicitly if you want to display a different name for debugging purposes.


const MyComponent: FC = () => {
return <div>Hello!</div>
}

MyComponent.displayName = 'MyAwesomeComponent'