import WithDraggable from '@/components/common/draggable/WithDraggable' import { useRecoilValue } from 'recoil' import { contextPopupPositionState } from '@/store/popupAtom' import { usePopup } from '@/hooks/usePopup' import { useMessage } from '@/hooks/useMessage' export default function CircuitNumberEdit(props) { const contextPopupPosition = useRecoilValue(contextPopupPositionState) const { id, pos = contextPopupPosition, apply } = props const { closePopup } = usePopup() const { getMessage } = useMessage() const handleApply = () => { if (apply) apply() closePopup(id) } return ( closePopup(id)} />
{getMessage('modal.module.circuit.number.edit.info')}
{getMessage('modal.module.circuit.number')}
) }