mancala/src/util/key_factory.ts

6 lines
94 B
TypeScript

import { v4 as uuidv4 } from 'uuid';
export const generateKey = ()=>{
return uuidv4();
}