All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.form.fields.multiple.MultipleDragButton.tsx Maven / Gradle / Ivy

There is a newer version: 0.80.3
Show newest version
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy