Skip to content

Instantly share code, notes, and snippets.

@admataz
Last active June 20, 2019 21:27
Show Gist options
  • Save admataz/ad78ec6dd88f40be4954527dc2948520 to your computer and use it in GitHub Desktop.
Save admataz/ad78ec6dd88f40be4954527dc2948520 to your computer and use it in GitHub Desktop.
has camera hook
const [hasCamera, setHasCamera] = useState(false);
useLayoutEffect(() => {
navigator.mediaDevices
.getUserMedia({ video: true })
.then(hasCamera => setHasCamera(true))
.catch(err => setHasCamera(false));
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment