useConstant.js 197 B

12345678
  1. import * as React from 'react';
  2. export default function useConstant(fn) {
  3. var ref = React.useRef();
  4. if (!ref.current) {
  5. ref.current = { v: fn() };
  6. }
  7. return ref.current.v;
  8. }