This commit is contained in:
Marta Kowalska
2025-10-22 08:13:59 +00:00
commit 80ca059fb8
162 changed files with 16816 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { Combo } from '@svar-ui/react-core';
import UserStub from './UserStub.jsx';
function UsersCustomCombo(props) {
const { value, options, onChange } = props;
return (
<Combo
options={options}
value={value}
onChange={onChange}
clear
placeholder="Assign to the person"
>
{({ option }) => <UserStub user={option} />}
</Combo>
);
}
export default UsersCustomCombo;