Gopal Das
Results
2
comments of
Gopal Das
This worked for me. "DraggableContext.tsx" ``` import { createContext } from "react"; export interface DraggableContextInterface { index: number; setIndex: (index: number) => void; } const initialState: DraggableContextInterface = { index:...
https://github.com/GopalDas123/Bootcamp