UNPKG

@chayns-components/core

Version:

A set of beautiful React components for developing your own applications with chayns.

9 lines 273 B
import { useEffect, useState } from 'react'; export const useIsTouch = () => { const [isTouch, setIsTouch] = useState(false); useEffect(() => { setIsTouch(!matchMedia('(pointer:fine)').matches); }, []); return isTouch; }; //# sourceMappingURL=environment.js.map