(ref: AtomRef.AtomRef<A>, prop: K)
| 484 | * @since 4.0.0 |
| 485 | */ |
| 486 | export const useAtomRefPropValue = <A, K extends keyof A>(ref: AtomRef.AtomRef<A>, prop: K): A[K] => |
| 487 | useAtomRef(useAtomRefProp(ref, prop)) |
nothing calls this directly
no test coverage detected