Package Exports
- use-prefers-color-scheme
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (use-prefers-color-scheme) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
use-prefers-color-scheme
React hook for determining the preferred color scheme
Install
npm install --save use-prefers-color-scheme
Usage
import React from 'react'
import usePrefersColorScheme from 'use-prefers-color-scheme'
const App = () => {
const preferredColorSchema = usePrefersColorScheme()
const isDarkMode = preferredColorSchema === 'dark'
return (
<div>You are using {isDarkMode ? 'Dark Mode 🌚' : 'Light Mode 🌞'}!</div>
)
}
License
MIT © rfoel