UNPKG
@flying-studio/use-pagination
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
分页请求库
github.com/cumtflyingstudio/usePagination
cumtflyingstudio/usePagination
@flying-studio/use-pagination
/
dist
/
react
/
hooks
/
useLatest.js
8 lines
(7 loc)
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import { useRef }
from
'react'
;
function
useLatest
(
value
)
{
var
ref
= useRef(
value
);
ref
.current =
value
;
return
ref
; } export
default
useLatest;