Add missing file

This commit is contained in:
Ramon Wenger 2023-04-19 10:08:18 +02:00
parent a91eea0de1
commit 2cbb87ed18
1 changed files with 6 additions and 0 deletions

6
client/src/helpers/id.ts Normal file
View File

@ -0,0 +1,6 @@
let count = 0;
export const getUniqueId = () => {
count++;
return `uid-${count}`;
};