2019-05-01 03:24:04 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2019-09-07 04:28:02 +08:00
|
|
|
import ActionsBarService from '/imports/ui/components/actions-bar/service';
|
2019-05-01 03:24:04 +08:00
|
|
|
|
|
|
|
import CreateBreakoutRoomModal from './component';
|
|
|
|
|
|
|
|
export default withTracker(() => ({
|
2019-09-07 04:28:02 +08:00
|
|
|
createBreakoutRoom: ActionsBarService.createBreakoutRoom,
|
|
|
|
getBreakouts: ActionsBarService.getBreakouts,
|
|
|
|
getUsersNotAssigned: ActionsBarService.getUsersNotAssigned,
|
|
|
|
sendInvitation: ActionsBarService.sendInvitation,
|
|
|
|
users: ActionsBarService.users(),
|
|
|
|
meetingName: ActionsBarService.meetingName(),
|
2019-05-01 03:24:04 +08:00
|
|
|
}))(CreateBreakoutRoomModal);
|