export const randomBaseId = (min:number = 1000,max:number = 9999)=>{
  return Math.floor(Math.random()*(max-min))+min;
}