UNPKG
@ichooss/xflow
Version:
latest (2.0.11)
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
[English (US)](README.md) | 简体中文
github.com/antvis/XFlow
antvis/XFlow
@ichooss/xflow
/
src
/
hooks
/
useLatest.ts
11 lines
(7 loc)
•
159 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import { useRef }
from
'react'
;
function
useLatest
<
T
>(
value
: T
)
{
const
ref
= useRef(
value
);
ref
.current =
value
;
return
ref
; } export { useLatest };