UNPKG

react-jsx-highcharts

Version:

Highcharts charts built using React components

10 lines (8 loc) 188 B
import { useRef, useEffect } from 'react'; export default function usePrevious(value) { const ref = useRef(); useEffect(() => { ref.current = value; }); return ref.current; }