bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/user-list/container.jsx
2024-03-06 14:28:18 -03:00

15 lines
580 B
JavaScript
Executable File

import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import getFromUserSettings from '/imports/ui/services/users-settings';
import Service from '/imports/ui/components/user-list/service';
import UserList from './component';
const UserListContainer = (props) => <UserList {...props} />;
export default withTracker(({ compact }) => (
{
CustomLogoUrl: Service.getCustomLogoUrl(),
showBranding: getFromUserSettings('bbb_display_branding_area', window.meetingClientSettings.public.app.branding.displayBrandingArea),
}
))(UserListContainer);