This is just a technology testing project based on Create React App and TailwindCSS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
125B

  1. let lastId = 0;
  2. const newId = function(prefix='id') {
  3. lastId++;
  4. return `${prefix}${lastId}`;
  5. }
  6. export default newId