Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
296 Bytes
import { useRef } from 'react'
type Init<T> = () => T
/**
* Creates a constant value over the lifecycle of a component.
*/
export function useConstant<T>(init: Init<T>) {
const ref = useRef<T | null>(null)
if (ref.current === null) {
ref.current = init()
}
return ref.current
}