UNPKG

@wfp/react

Version:
11 lines (10 loc) 245 B
/** * Generic utility to initialize a method that will return a unique instance id * for a component. */ export default function setupGetInstanceId() { let instanceId = 0; return function getInstanceId() { return ++instanceId; }; }