Skip to content

Instantly share code, notes, and snippets.

View Electromorphous's full-sized avatar
🐢
I like turtles

Aseer Electromorphous

🐢
I like turtles
View GitHub Profile
@timc1
timc1 / use-dropzone.tsx
Last active May 17, 2024 11:21
A React hook that returns whether a file is being dragged into the document from the operating system and not from within the browser.
import React from 'react'
type DropzoneContextValue = {
isDragging: boolean
}
const DropzoneContext = React.createContext<DropzoneContextValue | undefined>(
undefined
)