Add store

This commit is contained in:
Vadim
2021-01-20 10:49:20 +03:00
parent b77e85cf74
commit 613f00b8bc
7 changed files with 97 additions and 7 deletions

5
src/utils/id.js Normal file
View File

@@ -0,0 +1,5 @@
import { v4 as uuid } from 'uuid'
export function generateId() {
return uuid()
}