Skip to main content

Documentation Index

Fetch the complete documentation index at: https://orderly.network/docs/llms.txt

Use this file to discover all available pages before exploring further.

Evaluate a CSS media query via JavaScript.

Example

const isTablet = useMediaQuery("(max-width: 768px)");

return <div>{isTablet ? "is phone or tablet" : "is desktop"}</div>;