Generate Unique Key
const generateUniqueId = () => {
return Math.random().toString(36).substring(2);
}
const generateUniqueId = () => {
return Math.random().toString(36).substring(2);
}