popup conatiner for users

This commit is contained in:
Nate Kelley 2025-01-20 16:11:49 -07:00
parent 5d8a3a3337
commit e1a23a0656
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 15 additions and 2 deletions

View File

@ -95,7 +95,6 @@ export const ListUsersComponent: React.FC<{
[activeUsers, inactiveUsers]
);
// <BusterListSelectedOptionPopupContainer />;
return (
<InfiniteListContainer
showContainerBorder={false}

View File

@ -1,3 +1,4 @@
import { BusterListSelectedOptionPopupContainer } from '@/components/list';
import React from 'react';
export const UserListPopupContainer = React.memo(
@ -8,8 +9,21 @@ export const UserListPopupContainer = React.memo(
selectedRowKeys: string[];
onSelectChange: (selectedRowKeys: string[]) => void;
}) => {
return <div>UserListPopupContainer</div>;
return (
<BusterListSelectedOptionPopupContainer
selectedRowKeys={selectedRowKeys}
onSelectChange={onSelectChange}
buttons={[]}
/>
);
}
);
UserListPopupContainer.displayName = 'UserListPopupContainer';
const PermissionGroupAssignButton: React.FC<{
selectedRowKeys: string[];
onSelectChange: (selectedRowKeys: string[]) => void;
}> = React.memo(({ selectedRowKeys, onSelectChange }) => {
return <div>PermissionGroupAssignButton</div>;
});