UNPKG
react-media-hook
Version:
latest (0.5.1)
0.5.1
0.5.0
0.4.9
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
0.1.2
0.1.1
0.1.0
React Hook for media query
github.com/brainhubinc/react-media-hook
brainhubinc/react-media-hook
react-media-hook
/
index.js.flow
8 lines
(7 loc)
•
211 B
Flow
View Raw
1
2
3
4
5
6
7
8
// @flow
export
type
MediaResult
= {
matches
:
boolean
,
media
:
string
, };
declare
export
function
useMedia
(
query
:
string
): ?
MediaResult
;
declare
export
function
useMediaPredicate
(
query
:
string
):
boolean
;