-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
62 lines (60 loc) · 2.43 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// the-platform
export { Audio } from 'the-platform';
export { Img } from 'the-platform';
export { Preload } from 'the-platform';
export { Script } from 'the-platform';
export { Stylesheet } from 'the-platform';
export { Video } from 'the-platform';
export { useDeviceMotion } from 'the-platform';
export { useDeviceOrientation } from 'the-platform';
export { useGeoPosition } from 'the-platform';
export { useIntersectionObserver } from 'the-platform';
export { useMedia } from 'the-platform';
export { useNetworkStatus } from 'the-platform';
export { useWindowScrollPosition } from 'the-platform';
export { useWindowSize } from 'the-platform';
// react-use
export { createMemo } from 'react-use';
export { useAsync } from 'react-use';
export { useAudio } from 'react-use';
export { useBattery } from 'react-use';
export { useBoolean } from 'react-use';
export { useCounter } from 'react-use';
export { useCss } from 'react-use';
export { useFavicon } from 'react-use';
export { useGeolocation } from 'react-use';
export { useGetSet } from 'react-use';
export { useGetSetState } from 'react-use';
export { useHover } from 'react-use';
export { useIdle } from 'react-use';
export { useLifecycles } from 'react-use';
export { useList } from 'react-use';
export { useLocalStorage } from 'react-use';
export { useLocation } from 'react-use';
export { useLogger } from 'react-use';
export { useMap } from 'react-use';
export { useMedia as useMediaU } from 'react-use';
export { useMedia as useMedia2 } from 'react-use';
export { useMediaDevices } from 'react-use';
export { useMotion } from 'react-use';
export { useMount } from 'react-use';
export { useNetwork } from 'react-use';
export { useNumber } from 'react-use';
export { useObservable } from 'react-use';
export { useOrientation } from 'react-use';
export { useRaf } from 'react-use';
export { useSetState } from 'react-use';
export { useSize } from 'react-use';
export { useSpeech } from 'react-use';
export { useSpring } from 'react-use';
export { useTimeout } from 'react-use';
export { useTitle } from 'react-use';
export { useToggle } from 'react-use';
export { useTween } from 'react-use';
export { useUnmount } from 'react-use';
export { useUpdate } from 'react-use';
export { useWindowSize as useWindowSizeU } from 'react-use';
export { useWindowSize as useWindowSize2 } from 'react-use';
// others
export { default as useOnClickOutside } from 'use-onclickoutside';
export { SubstateProvider, useSubstate } from 'use-substate';