mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
381 B
381 B
useOrientation
React sensor hook that tracks screen orientation of user's device.
Returns state in the following shape
{
angle: 0,
type: 'landscape-primary'
}
Usage
import {useOrientation} from 'react-use';
const Demo = () => {
const state = useOrientation();
return (
<pre>
{JSON.stringify(state, null, 2)}
</pre>
);
};