Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save krystalcampioni/2724fba791223859152656068300dafe to your computer and use it in GitHub Desktop.
Save krystalcampioni/2724fba791223859152656068300dafe to your computer and use it in GitHub Desktop.
export function usePrefersReducedMotion() {
const prefersReducedMotion =
typeof window === 'undefined'
? false
: window.matchMedia('(prefers-reduced-motion: reduce)').matches;
return {prefersReducedMotion};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment