UNPKG

@devino.solutions/upup

Version:
8 lines (7 loc) 289 B
import React, { Dispatch, SetStateAction } from 'react'; declare type Props = { isDragging: boolean; setIsDragging: Dispatch<SetStateAction<boolean>>; }; export default function AdapterSelector({ isDragging, setIsDragging, }: Readonly<Props>): React.JSX.Element; export {};