This is just a technology testing project based on Create React App and TailwindCSS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

8 行
125B

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