UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

17 lines (14 loc) 302 B
/** * MSKCC 2021, 2024 */ /** * Generic utility to initialize a method that will return a unique instance id * for a component. */ function setupGetInstanceId() { let instanceId = 0; return function getInstanceId() { return ++instanceId; }; } export { setupGetInstanceId as default };