Skip to content

Instantly share code, notes, and snippets.

@ZhouYang1993
Created October 5, 2022 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZhouYang1993/156eab5bb8993170508d6875eff4d76c to your computer and use it in GitHub Desktop.
Save ZhouYang1993/156eab5bb8993170508d6875eff4d76c to your computer and use it in GitHub Desktop.
Detect Mobile Browsers in React
function ResponsiveUI() {
return (
window.screen.width >= 600 ? (
// an UI component for desktop browsers
) : (
// an UI component for mobile browsers
)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment