(['left', 'right']);
const slot = useMemo(() => {
if (position.length === 0) return null;
return position.reduce(
(acc, direction) => ({ ...acc, [direction]: OperationsSlot[direction] }),
{},
);
}, [position]);
return (
<>
You can also specify its direction or both side
{
setPosition(value as PositionType[]);
}}
/>
>
);
};
export default App;