chore(web): simpler unique ID generation (#9945)

This commit is contained in:
Ben
2024-06-02 16:41:44 +00:00
committed by GitHub
parent d1135db8cf
commit 1323c7ee88
6 changed files with 8 additions and 36 deletions

View File

@@ -0,0 +1,2 @@
let _count = 0;
export const generateId = (): string => `id-${_count++}`;