UNPKG

fastcomments-react-native-sdk

Version:

React Native FastComments Components. Add live commenting to any React Native application.

9 lines (8 loc) 285 B
import { hookstate } from "@hookstate/core"; const nodeCount = hookstate(0); export function getNextNodeId() { const lastValue = nodeCount.get(); const newCount = lastValue + 1; nodeCount.set(newCount); return newCount; // OPTIMIZATIONS: only one get() and one set() }