mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
94cf07ddb4
(cherry picked from commit 99fc52039f44264c83d939e5f096d8e16d2f3355)
10 lines
215 B
JavaScript
10 lines
215 B
JavaScript
let i = 0;
|
|
|
|
/**
|
|
* @deprecated Use React's useId() instead
|
|
* @returns An HTML 4.0 compliant element IDs (http://stackoverflow.com/a/79022)
|
|
*/
|
|
export default function getUniqueElementId() {
|
|
return `id-${i++}`;
|
|
}
|