mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
// Copyright (C) 2017-2023 Smart code 203358507
|
|
|
|
const React = require('react');
|
|
|
|
const useLiveRef = (value) => {
|
|
const ref = React.useRef();
|
|
ref.current = value;
|
|
return ref;
|
|
};
|
|
|
|
module.exports = useLiveRef;
|