domId.tsx 88 B

12345
  1. function domId(prefix: string): string {
  2. return prefix + '123456';
  3. }
  4. export {domId};