Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Hook to evaluate a CSS media query and return a boolean for responsive layouts.
const isTablet = useMediaQuery("(max-width: 768px)"); return <div>{isTablet ? "is phone or tablet" : "is desktop"}</div>;