mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
285 B
285 B
useMotion
React sensor hook that uses device's acceleration sensor to track its motions.
Usage
import {useMotion} from 'react-use';
const Demo = () => {
const state = useMotion();
return (
<pre>
{JSON.stringify(state, null, 2)}
</pre>
);
};