mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00
feat(tool): uuid v4 generator
This commit is contained in:
parent
40e9af06cf
commit
3ae61147a9
5 changed files with 83 additions and 4 deletions
|
@ -3,12 +3,13 @@ import type { ToolCategory } from './Tool';
|
|||
|
||||
import { tool as tokenGenerator } from './token-generator';
|
||||
import { tool as hashText } from './hash-text';
|
||||
import { tool as uuidGenerator } from './uuid-generator';
|
||||
|
||||
export const toolsByCategory: ToolCategory[] = [
|
||||
{
|
||||
name: 'Crypto',
|
||||
icon: LockOpen,
|
||||
components: [tokenGenerator, hashText],
|
||||
components: [tokenGenerator, hashText, uuidGenerator],
|
||||
},
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue