
main.react.useMemo.kt Maven / Gradle / Ivy
@file:Suppress("NOTHING_TO_INLINE")
package react
/**
* Only works inside [fc]
* @see Hooks and Function Components
*/
inline fun useMemo(
vararg dependencies: Any?,
noinline callback: () -> T,
): T =
rawUseMemo(callback, dependencies)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy