working on canvas

This commit is contained in:
paul
2024-08-08 22:49:14 +05:30
parent 35cc57c453
commit e9f44bfbee
3 changed files with 61 additions and 20 deletions

4
src/utils/uid.js Normal file
View File

@@ -0,0 +1,4 @@
export function UID(){
return Date.now().toString(36) + Math.random().toString(36).substr(2)
}