mirror of https://github.com/buster-so/buster.git
popup conatiner for users
This commit is contained in:
parent
5d8a3a3337
commit
e1a23a0656
|
@ -95,7 +95,6 @@ export const ListUsersComponent: React.FC<{
|
|||
[activeUsers, inactiveUsers]
|
||||
);
|
||||
|
||||
// <BusterListSelectedOptionPopupContainer />;
|
||||
return (
|
||||
<InfiniteListContainer
|
||||
showContainerBorder={false}
|
||||
|
|
|
@ -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>;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue