Skip to content

Instantly share code, notes, and snippets.

@jaredloson
jaredloson / Cursor.jsx
Last active December 3, 2022 19:35
Interactive Javascript Cursor in React
import React, { useContext, useState } from "react";
import useMousePosition from "./useMousePosition";
import { CursorContext } from "./CursorContextProvider";
import isTouchDevice from "./isTouchDevice";
const Cursor = () => {
if (isTouchDevice) {
return null;
}