1.2.0 • Published 3 years ago

react-use-variable v1.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

react-use-variable custom hook

React hook to update variable refs automatically

Install

npm install react-use-variable

Usage

export const Component: FunctionComponent<Props> = ({ something }) => {
  const ref = useVariable(something);

  // is the same as:

  const ref = useRef(something);
  ref.current = something;

  const [state, ref, setState] = useStateVariable(something);

  // is the same as:

  const [state, setState] = useState(something);
  const ref = useRef(state);
  ref.current = something;
};

License

MIT