mirror of
https://github.com/streamich/react-use.git
synced 2026-01-18 14:06:52 +00:00
21 lines
282 B
Markdown
21 lines
282 B
Markdown
# `useMediaDevices`
|
|
|
|
React sensor hook that tracks connected hardware devices.
|
|
|
|
|
|
## Usage
|
|
|
|
```jsx
|
|
import {useMediaDevices} from 'react-use';
|
|
|
|
const Demo = () => {
|
|
const state = useMediaDevices();
|
|
|
|
return (
|
|
<pre>
|
|
{JSON.stringify(state, null, 2)}
|
|
</pre>
|
|
);
|
|
};
|
|
```
|