Skip to content

Instantly share code, notes, and snippets.

@MeetMartin
Created September 11, 2021 01:47
Show Gist options
  • Save MeetMartin/28036d6835028e88a1f57efa9a7453ca to your computer and use it in GitHub Desktop.
Save MeetMartin/28036d6835028e88a1f57efa9a7453ca to your computer and use it in GitHub Desktop.
import React from 'react';
import useDeviceType from '../hooks/useDeviceType';
const DeviceComponent = () => {
const isMobile = useDeviceType();
return (
<p>
You are using a {isMobile ? 'mobile device' : 'computer'}.
</p>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment