Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 283 Bytes

useMotion.md

File metadata and controls

20 lines (14 loc) · 283 Bytes

useMotion

React 传感器钩子,使用设备的加速度传感器跟踪其运动。

用法

import {useMotion} from 'react-use';

const Demo = () => {
  const state = useMotion();

  return (
    <pre>
      {JSON.stringify(state, null, 2)}
    </pre>
  );
};