components.form.fields.multiple.MultipleDragButton.tsx Maven / Gradle / Ivy
import { useTranslator } from 'hooks/translator';
import { useState } from 'react';
import { DragHandle } from '@mui/icons-material';
import { IconButton, Tooltip } from '@mui/material';
const MultipleDragButton = () => {
const { t } = useTranslator()
const [grabbing, setGrabbing] = useState(false)
const onGrab = () => {
setGrabbing(true)
}
const onDrop = () => {
setGrabbing(false)
}
return (
)
}
export default MultipleDragButton