Software Development Kits
[EVM] React Components SDK
- Overview
- Getting started
- Configuration
- Theming
- Wallet connect
- Framework Guides
- Page Components
- Block Components
[EVM] React Hooks SDK
[EVM] Core SDK
[EVM] Perp SDK
Utility
useMediaQuery
Evaluate a CSS media query via JavaScript.
Example
const isTablet = useMediaQuery("(max-width: 768px)");
return <div>{isTablet ? "is phone or tablet" : "is desktop"}</div>;
On this page