domId.tsx 120 B

12345
  1. function domId(prefix: string): string {
  2. return prefix + Math.random().toString(36).substr(2, 10);
  3. }
  4. export {domId};