MCPcopy Create free account
hub / github.com/codeaashu/claude-code / useIsTablet

Function useIsTablet

web/hooks/useMediaQuery.ts:25–27  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

23
24/** 768px – 1023px */
25export function useIsTablet(): boolean {
26 return useMediaQuery("(min-width: 768px) and (max-width: 1023px)");
27}
28
29/** >= 1024px */
30export function useIsDesktop(): boolean {

Callers

nothing calls this directly

Calls 1

useMediaQueryFunction · 0.85

Tested by

no test coverage detected